function toBasket (itemid, i)
{	
	$.post (
		root + "/modules/ajax/toBasket.php", 
		{itemid : itemid, q : $("#q" + i).attr("value")}, 
		function (data)
		{	
			//alert ($("#q" + i).attr("value"));
			var res = eval ("("+data+")");
			$("#itemmore_wrap"+i).effect ("transfer", {to : $("#basketinfo"), className : "ui-effects-transfer"}, 700, function (){$(this).fadeOut(500, function (){basketMsgWindow ("", langs[13], langs[14], langs[15]);});});
			$("#basketq").html (res.q); 
			$("#baskets").html (sprintf ("%.2f", res.s*valuta.course));
			
//			$("#hsmenu3").fadeOut (500, function () {$("#basketq").html (res.q); $("#baskets").html (res.s); $("#hsmenu3").fadeIn (1000);});						
		}
	);	
}
