function horizontal() {
 
   var navItems = document.getElementById("menu_dropdown").getElementsByTagName("li");
    
   for (var i=0; i< navItems.length; i++) {
      if(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 = "";}
            navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "";}
         }
      }
   }
 
}


function limpar (objeto, msg) {
	if (objeto.value == msg)objeto.value = '';
}

function mostrar (objeto, msg) {
	if (objeto.value == '')objeto.value = msg;
}



function verificaForm()
	{
		if(document.cadastro.nome.value == ""){ 
			alert('O campo nome é de preenchimento obrigatório!');
			document.cadastro.nome.focus();
			return false;
		}
		if(document.cadastro.email.value == ""){
			alert('O campo email é de preenchimento obrigatório!');
			document.cadastro.email.focus();
			return false;
		}
		if(document.cadastro.email.value.indexOf("@")==-1 || document.cadastro.email.value.indexOf(".")==-1){
			alert('Email inválido');
			document.cadastro.email.focus();
			return false;
		}	
		return true;
	}

