// mmenu top
function vertical() {

	var navItems = document.getElementById("nav").getElementsByTagName("li");
	
	for (var i=0; i< navItems.length; i++) {
		if(navItems[i].className == "submmenu") {
			navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.style.backgroundColor = "#f9f9f9";}
			navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "#000000";}
		}
	}

}

function horizontal() {

	var navItems = document.getElementById("barra").getElementsByTagName("li");
	
	for (var i=0; i< navItems.length; i++) {
		if((navItems[i].className == "mmenuvertical") || (navItems[i].className == "submmenu"))
		{
			if(navItems[i].getElementsByTagName('ul')[0] != null)
			{
				navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.style.backgroundColor = "#f9f9f9";}
				navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "#000000";}
			}
		}
	}

}