jQuery(document).ready(function()
{ 

//Добавить в корзину 
$('.span').live("click", function(){
this_id = $(this).parent('td').find('.product_id').val();
jQuery.ajax
            ({
              beforeSend: function()
                {  
                },
              type: "POST",
              url: 'http://'+window.location.host+'/shop/product_add',
              data: {product_id:this_id}, 
              cache: false,
              success: function(data)
                {
                jQuery('.recycle').html(data);                                                          
                }
            });
        });
});                    