$(function() {
	$('#frmContato').validaForm({
		
		success: function(){
			$.ajax({
				type: "POST",
				url: "../_funcoes/index.php",
				data: "__funcao=contato_enviar&"+$("#frmContato").serialize(),
				cache: false,
				success: function(r) {
					alert(r);
					if (r.indexOf("verifique") == -1)
						window.location.href = '../home/';
				}
			});
			return false;
		}
	});

	$("div.contato div.bt_enviar_contato a").click(function() {
		$("#frmContato").submit();
	});
});

