$(function(){
  var buttonsAddToCart = $("a.add_to_cart"); 
  buttonsAddToCart.click(function(){  
    var this_button = $(this);
    var product_id = this_button.attr("id");  
    this_button.fadeOut("slow"); 
    $.ajax({
      type: "GET",
      url: "/" + lang + "/cart/add/" + product_id,
      success: function(msg) {this_button.after(msg);}
      });
    return false;
    });
});
