$(document).ready(function(){
	$(".add_to_cart").click(function () {
		$("table .hint").remove();

		$("#hint").clone().insertBefore($(this)).show();
		
		$.ajax({
			url: this.href,
			data: { "_mode": "js" },
			cache: false,
			success: function(data) {
				$("#cart").html(data);
			}
		});

		return false;
	});
});


$(document).ready(function(){
	$(".remove_from_cart").click(function () {
		$.ajax({
			url: this.href,
			data: { "_mode": "js" },
			cache: false,
			success: function(data){
				if (data == 0)
				{
					$(".catalog").parent().before("<p>Ваша корзина пуста.</p>")
					$(".catalog").parent().remove();
				}
				else 
				{
					$("#total").html(data);
				}
			}
		});
		
		$(this).parent().parent().remove();

		return false;
	});
});