$(function(){
	$("#nome").focus();
	$("form[@name=frmContato]").submit(function(){ return ValidarContato(); });
	$("#limpar").click(function(){ return Limpar(); });
});

function Limpar(){
	$("form[@name=frmContato]")[0].reset(); 
	$("#nome").focus(); 
	return false;
}
	
function ValidarContato(){
	with (document.frmContato){
		if ( nome.value == "" ){
			alert("Por favor, informe seu nome.");
			nome.focus();
		}
		else if (email.value == ""){
			alert("Por favor, informe seu e-mail.");
			email.focus();
		}
		else if (mensagem.value == ""){
			alert("Por favor, informe sua mensagem.");
			mensagem.focus();
		}
		else{
			$("#enviar").attr('disabled','disabled');
			$("#enviar").attr('src', 'img/botao-aguarde.gif');
			$.post("contato_enviar.php", { 
				nome: $("#nome").val(), 
				email: $("#email").val(),
				fone: $("#fone").val(),
				cel: $("#celular").val(),
				cid: $("#cidade").val(),
				ass: $("#assunto").val(),
				msg: $("#mensagem").val()}, 
				function(resposta){ 
					alert(resposta);
					$("#enviar").removeAttr('disabled');
					$("#enviar").attr('src', 'img/botao-enviar.gif');
				});
		}
	}
	return false;
}