$(document).ready(function(){
	/* ДОБАВЛЕНИЕ ТОВАРА В КОРЗИНУ
	.buy_button		- кнопка добавления
	.buy_product	- блок товара
		product	- ид товара
		price	- цена товара
		count	- количество товара */	$('.buy_button').click(function(){		var product	= parseInt($(this).parent('.buy_product').attr('product'));
		var price	= parseFloat($(this).parent('.buy_product').attr('price')).toFixed(2);
		var count	= parseInt($(this).parent('.buy_product').attr('count'));		$.get(
			'/ajax.php',
			{'file':'basket','action':'add_product','product':product,'price':price,'count':count},
			function (data) {
				if(data) alert(data);
				//alert(1);
			}
		);
		$(this).parent('.buy_product').find('.buy_message').show().fadeOut(3000);
		var busket_count = parseInt($('.busket_count').html());
		var busket_total = parseFloat($('.busket_total').html()).toFixed(2);
		busket_count+= count;
		busket_total = parseFloat(price*count)+parseFloat(busket_total);
		$('.busket_count').html(busket_count);
		$('.busket_total').html(busket_total);
		return false;
	});
	$('.clear_basket').click(function(){
		$.get('/ajax.php',{'file':'basket','action':'delete_all'});
		$('.busket_count').html(0);
		$('.busket_total').html('0.00');
		return false;
	});

});
