$(document).ready(function(){

// корзина
 $("input[rel='button-cart']").click(function(){
   
   id = $(this).attr('id').replace('prd-btn-id','');
   $('#basket').html('<div class="basket">Корзина</div><div class="basket2"><img src="images/ajax-loader.gif" alt="loading..." /></div>');
   $.post("index.php?productID="+id, $("#prd-form"+id).serialize()+'&cart_x=1',function(data){refresh_cart();});
   
   $(this).parent().html("<a href='index.php?shopping_cart=yes' class='but_v' >корзина</a>");
    $(this).unbind('click');
   
	//.attr("href", "index.php?shopping_cart=yes").addClass('but_v').html('Корзина');


    return false;
	
	});
	
	
$('#show_discuss').click(function(){
$(this).css('display','none');
id = $('#productID').html();
$('#discuss').html('<img src="images/ajax-loader.gif" alt="loading..." />');
$('#discuss').load('index.php?productID='+id+'&ajax=1');
return false;

});


							
	
});	 	  
