


function horizontal() { 

   var navItems = document.getElementById("barra").getElementsByTagName("li"); 
    
   for (var i=0; i< navItems.length; i++) { 
      if((navItems[i].className == "menuvertical") || (navItems[i].className == "submenu")) 
      { 
         if(navItems[i].getElementsByTagName('ul')[0] != null) 
         { 
            navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.style.backgroundColor = "#f9f9f9";} 
            navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "#333333";} 
         } 
      } 
   } 

} 


function verifica(){
	
	if (document.contato.nome.value==""){
		alert("Preencha corretamente o campo nome.")
		return false
		}
		if (document.contato.email.value==""){
		alert("Preencha corretamente o campo E-mail.")
		return false
		}	
			if (document.contato.fone.value==""){
		alert("Preencha corretamente o campo Telefone.")
		return false
		}	
			if (document.contato.assunto.value==""){
		alert("Preencha corretamente o campo Assunto.")
		return false
		}
			if (document.contato.mensagem.value==""){
		alert("Preencha corretamente o campo Mensagem.")
		return false
		}

	return true
		}

