$(document).ready(function()
{
    /**
    * Počítá počet kliknutí na obchod z výpisu
    **/
    $(".countClick").click(function()
    {
        var id = $(this).attr('ids');
        
        $.ajax({
                   type: "POST",
                   url: "_ajax/countClick.php",
                   data: "id="+id,
                   success: function(msg)
                   {
                     
                   }
             });
        
    });
        
    
    
       /* 
        // back to top
        $('.scrollPage').click(function() {
           var elementClicked = $(this).attr("href");
           var destination = $(elementClicked).offset().top;
           $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
           return false;
        });
        */
});
