$(document).ready(function(){
	$(":checkbox").click(function(){
		if ($(this).attr("checked"))
		{
			var data = "action=ADD_TO_COMPARE_RESULT&id=" + $(this).val();
		}
		else
		{
			var data = "action=DELETE_FROM_COMPARE_RESULT&ID=" + $(this).val();
		}
		$.ajax({
   			type: "POST",
   			url: "/catalog/compare.php",
   			cache: false,
   			data: data,
   			success: function(){}
 		});
	});
	$(".addToBasket").click(function(){
		var pid = $(this).attr("pid");
		var count = $("#count" + pid).val();
		if (count > 0)
		{
//alert(pid + " " + count);
			$.ajax({
	   			type: "POST",
	   			url: "/js/ajax.php",
	   			cache: false,
	   			data: "ID=" + pid + "&COUNT=" + count,
	   			success: function(msg){
	   				alert (msg);
	   			}
	 		});
		}
	});
});
