$(function() {
	$("a.excluir").click(function() {
		var product = $(this).attr("produto");
		$.ajax({
			type: "GET",
			url: "carrinho-acoes.php",
			data: "remover[]=" + product,
			success: function() {
				$("tr#" + product).fadeOut(500, function() {
					$(this).remove();
				});
			},
			error: function() {
				window.location("carrinho-acoes.php?remover[]="+product);
			}
		});
	});
	
	$("input.botcep").click(function() {
		var cep1 = $("input[name*=cep1]").val();
		var cep2 = $("input[name*=cep2]").val();
		$.ajax({
			type: "GET",
			url: "carrinho-acoes.php",
			data: "cep1=" + cep1 + "&cep2=" + cep2,
			success: function() {
				
			},
			error: function() {
				window.location("carrinho-acoes.php?cep1="+product+"&cep2="+cep2);
			}
		});						
	});
});

