// principal menu

//<![CDATA[
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)
			{
				if ((navItems[i].className == "menuvertical")) {
					navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.className += " active";}
					navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.className = "menuvertical";}
				} else {
					navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.style.background = "#acdb8f";}
					navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.background = "none";} //this.style.backgroundColor = "#000";
				}
				
			}
		}
	}

}
//]]>
