$('.buyButton').livequery('click', function() {

         var id = $(this).attr("rel");
         var btimg= $(this).children('img');
         $.ajax({
                  type: "GET",
                  url: "/cart/add/id/"+id+"/quantity/1",
                  success: function(result){
                           $('#koszyk').html(result);
                           btimg.animate({marginLeft: '-50px', opacity: 100}, 500).oneTime(2000, function(){
                                    btimg.animate({marginLeft: '0px', opacity: 100}, 1000);
                           });
                  }
         });

         return false;

});


$('.buyBigButton').livequery('click', function() {

         var id = $(this).attr("rel");
         var btimg= $(this).children('img');
         $.ajax({
                  type: "GET",
                  url: "/cart/add/id/"+id+"/quantity/1",
                  success: function(result){
                           $('#koszyk').html(result);
                           btimg.animate({marginLeft: '-99px', opacity: 100}, 500).oneTime(2000, function(){
                                    btimg.animate({marginLeft: '0px', opacity: 100}, 1000);
                           });
                  }
         });

         return false;

});
