$(document).ready(function() {

/* button buy - start - */

$(".buy").click(
	function()
		{
			id=$(this).attr("id");
			count=$(this).parents(".buy_tr").find("input").attr("value");
			if (count=='' || count==0) {alert("Не указано количество!"); return false;}
			//alert(count);
			$(this).parents(".buy_tr").load("/functions/shop/ajax.php?id="+id+"&count="+count+"", {code: 1}, function (){$("#basket").load("/functions/shop/basket.php", {code: 1});});
			//data=$(this).attr("id").split("_");
            //$(this).load("/functions/shop/ajax.php?id="+data[0]+"&value="+data[1]+"&price="+data[2], {code: 1}, function (){$(this).removeClass("buy"); $("#basket").load("/system/templates/Shop/infobasket.php", {code: 1});});
		}
);

$(".count").keyup(
	function(event)
		{
            count=$(this).attr("value");
			count=count.replace(/[^0-9]/gi,"");
			for (i=0; i < count.length; i++) {if (count.charAt(i)!=0) {count=count.substr(i); break;}};
			if (count.length>1) {count=count.substr(0, 1)}
			$(this).attr("value", count);
		}
	);
/* button buy - end - */

});
