// JavaScript Document
	function verificar() {
		nome = $('#nome').val();
		fone = $('#fone').val();
		email = $('#email').val();
		msg = $('#msg').val();
		if (msg.length<5) {
			$('#erro2').empty();
			$('#erro2').html('Comentário vazio não chega a nenhum lugar! Escreva algo.');
			$('#erro2').slideDown();
			return false;
		} else if ( (fone.length<7) && (email.length<7) ) {
			$('#erro2').empty();
			$('#erro2').html('Ei, se você existe, e quiser uma resposta, deixe ao menos uma forma de contato!');
			$('#erro2').slideDown();
			return false;
		} else return true;
	}
	$(document).ready(function(){
//		alert('x');
	});
	
