jQuery(document).ready(function()
{ 

//Добавить в корзину 
$('.span').live("click", function(){
this_id = $(this).parent('td').find('.product_id').val();
this_type = $(this).parent('td').find('.type_variant').attr('id');
this_class=$(this).parent('td').parent('tr').parents('table:first').parent('td').parent('tr').parents('table:first').find('.product-image-img').attr('class').substr(18);
$(this).parent('td').parent('tr').parents('table:first').parent('td').parent('tr').parents('table:first').find('.product-image').effect("transfer", { className: this_class, to: "div.transfer" }, 800);

jQuery.ajax
            ({
              beforeSend: function()
                {  
                },
              type: "POST",
              url: 'http://'+window.location.host+'/shop/product_add',
              data: {product_id:this_id,product_type:this_type}, 
              cache: false,
              success: function(data)
                {
                jQuery('.recycle').html(data);                                                          
                }
            });
        });

$('.categories_title').live("click", function(){     
        $(this).parents('table:first').find('.product_categories').toggle();
});
        
});                    

