// JavaScript Document
window.onload = 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";this.style.backgroundColor = "#e8e8e8";}
            navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "#FFFFFF";}
         }
		 else
		 {
            navItems[i].onmouseover=function() {this.style.backgroundColor = "#e8e8e8";}
            navItems[i].onmouseout=function() {this.style.backgroundColor = "#FFFFFF";}
		 }
      }
      else if(navItems[i].className == "submenuint")
      {
         if(navItems[i].getElementsByTagName('ul')[0] != null)
         {
            navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.style.backgroundColor = "#576499";}
            navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "#3F486E";}
         }
		 else
		 {
            navItems[i].onmouseover=function() {this.style.backgroundColor = "#576499";}
            navItems[i].onmouseout=function() {this.style.backgroundColor = "#3F486E";}
		 }
      }
   }
}
