function send_to_cart(id,page,item,price,irub) 
{
var mybut = $("#prod"+item);
mybut.html("<img border='0' src='/pic/ajax/kypit_progr.png'>");
	$.ajax({
            type: "GET",
            url: "/jscripts/ajax/send_to_basket.php",
            data: "id="+item,
            dataType: "json",
            success: function(data) {			
var total_price = data.total_price;
var countWhereShow = data.countWhereShow;
$("#cart").html("покупок "+countWhereShow+"<br>"+total_price+" руб.<br><a href='/basket/index.php'>весь список</a>");
mybut.html("<a href='/basket'><img border='0' src='/pic/pereiti_v_korzinu.png'></a>"); 
									},
            error: function (xhr, str, rrr)
            {
            /*При ошибке делаю это*/    
			alert("произошла непредвиденная ошибка. Сообщите пожалуста администратору сайта." + xhr+str+rrr);
			/*---------------------*/
            }
			});
}
