// MENU HORIZONTAL
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";}
            navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none"}
         }
      }
   }
 
}
// POPUP'S 
function anuncie(){
		window.open("http://www.odebate.com.br/anuncie.html", "info", "status = 1, height = 350, width = 480, resizable = 0")
}
function QuemSomos(){
		window.open("http://www.odebate.com.br/quemsomos.html", "info", "status = 1, height = 460, width = 340, resizable = 0")
}
function cadastro(){
		window.open("http://colaborador.odebate.com.br/cadastro.php", "info", "status = 1, height = 420, width = 480, resizable = 0")
}
