function validaForm(){
	
	if (document.getElementById("nome").value=="" || document.getElementById("email").value=="" || document.getElementById("txt").value=="") {
	    
		alert("Por favor preencha todos os campos.");
		
		
	} else {
		
		$.post("/contato/envia", {nome:document.getElementById("nome").value , txt:document.getElementById("txt").value , email:document.getElementById("email").value } ,function(data){
			   alert('Mensagem enviada com sucesso!\n\rAgradecemos pelo contato.');
			 });
	}
	return false;
}

function setArre(num) {

}
