function init(){

	document.getElementById("servicos").onmouseover = function(){
		document.getElementById("submenu").style.display = 'block';
	}; 
	document.getElementById("servicos").onmouseout = function(){
		document.getElementById("submenu").style.display = 'none';
	}; 
	document.getElementById("submenu").onmouseout = function(){
		document.getElementById("submenu").style.display = 'none';
	}; 
	document.getElementById("submenu").onmouseover = function(){
		document.getElementById("submenu").style.display = 'block';
	};

}

window.onload=init

function validacontato(cont){
	if(cont.nome_para.value ==""){
      alert("Por favor, preencha corretamente o campo Nome!");
      cont.nome_para.focus();
      return false;
	} 
if ((cont.email.value.indexOf("@")<0) && (cont.email.value.indexOf(".")<0)){
	alert("Por favor, preencha corretamente o campo E-mail!")
	cont.email.focus()
	return (false);
	}
   return true;
}

function validacota(cota){
	if(cota.empresa.value ==""){
      alert("Por favor, preencha corretamente o campo Empresa!");
      cota.empresa.focus();
      return false;
	} 
		if(cota.nome.value ==""){
      alert("Por favor, preencha corretamente o campo Nome!");
      cota.nome.focus();
      return false;
	} 
if ((cota.email.value.indexOf("@")<0) && (cota.email.value.indexOf(".")<0)){
	alert("Por favor, preencha corretamente o campo E-mail!")
	cota.email.focus()
	return (false);
	}
   return true;
}