// JavaScript Document

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.backgroundImage = "url(img/bt_estilo_h.jpg)";document.getElementById('titulo_menu_topo').className = "Branco16";}
            navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundImage = "url(img/bt_estilo.jpg)";document.getElementById('titulo_menu_topo').className = "Cinza16";}
         }
      }
   }
 
}


function validarformnews(){

	x_erro = 'nao';

	if (document.frm_news.nome.value == "" || document.frm_news.nome.value == "nome"){
		alert('Preencha o nome corretamente')
		x_erro = 'sim';
		return false;
	}
	
	if (document.frm_news.email.value == "" || document.frm_news.email.value == "e-mail" || document.frm_news.email.length < 8){
		alert('Preencha o e-mail corretamente')
		x_erro = 'sim';
		return false;
	}

	if (x_erro == 'nao'){
		document.getElementById('frm_news').submit()
	}
	
}

function validarcontato(){

	x_erro = 'nao';

	if (document.frm_contato.nome.value == "" || document.frm_contato.nome.value == "Nome"){
		alert('Preencha o nome corretamente')
		x_erro = 'sim';
		return false;
	}
	
	if (document.frm_contato.cidade.value == "" || document.frm_contato.cidade.value == "Cidade"){
		alert('Preencha a cidade corretamente')
		x_erro = 'sim';
		return false;
	}
	
	if (document.frm_contato.telefone.value == "" || document.frm_contato.telefone.value == "Telefone"){
		alert('Preencha o telefone corretamente')
		x_erro = 'sim';
		return false;
	}
	
	if (document.frm_contato.email.value == "" || document.frm_contato.email.value == "E-mail"){
		alert('Preencha o e-mail corretamente')
		x_erro = 'sim';
		return false;
	}
	
	if (document.frm_contato.mensagem.value == "" || document.frm_contato.mensagem.value == "Mensagem"){
		alert('Preencha o telefone corretamente')
		x_erro = 'sim';
		return false;
	}

	if (x_erro == 'nao'){
		document.getElementById('frm_contato').submit()
	}
	
}
