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

	$("div.anuncie div.bt_enviar_anuncie a").click(function() {
		$("#frmAnuncie").submit();
	});
});

