// JavaScript Document
$(document).ready(function() {
/*$(' [placeholder] ').defaultValue();*/
$('.ph').defaultValue();
});




function ValidaForm1(){
			
	var emailER =/^[\w!#$%&'*+\/=?^`{|}~-]+(\.[\w!#$%&'*+\/=?^`{|}~-]+)*@(([\w-]+\.)+[A-Za-z]{2,6}|\[\d{1,3}(\.\d{1,3}){3}\])$/;
			
			
			
			if(document.form1.nome.value == ""){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Informe seu Nome";
			setTimeout(function() { document.form1.nome.focus();}, 10);
			return false;
			}
			if(document.form1.email.value == ""){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Informe seu E-mail";
			setTimeout(function() { document.form1.email.focus();}, 10);
			return false;
			}
			if(!emailER.test(document.form1.email.value)){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Informe um E-mail válido";
			setTimeout(function() { document.form1.email.focus();}, 10);
			return false;
			}
			if(document.form1.telefone.value == ""){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Informe seu Telefone";
			setTimeout(function() { document.form1.telefone.focus();}, 10);
			return false;
			}
			if(document.form1.cidade.value == ""){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Informe sua Cidade";
			setTimeout(function() { document.form1.cidade.focus();}, 10);
			return false;
			}
			if(document.form1.estado.value == "0"){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Informe o seu Estado";
			setTimeout(function() { document.form1.estado.focus();}, 10);
			return false;
			}
			if(document.form1.concessionaria.value == "0"){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Selecione uma Concessionária";
			setTimeout(function() { document.form1.concessionaria.focus();}, 10);
			return false;
			}
			if(document.form1.modelo.value == "0"){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Selecione um Modelo";
			setTimeout(function() { document.form1.modelo.focus();}, 10);
			return false;
			}
			if(document.form1.mensagem.value == "" || document.form1.mensagem.value == "Mensagem"){
			document.getElementById("aviso").innerHTML="<img src='images/cancel.png' style='vertical-align:top' /> Escreva sua Mensagem";
			setTimeout(function() { document.form1.mensagem.focus();}, 10);
			return false;
			}
}
