function toggle(menuID)
{
	for (x = 1; x <= 8; x++)
	{
		document.getElementById("sub_" + x).style.display = "none";
	}
	document.getElementById(menuID).style.display = "";
	document.getElementById('topmenu_container').style.height = "60px";
	
}

function switchMenu(menuID)
{
	var topSub = document.getElementById("menu_" + menuID);
	
	for (x = 1; x <= 9; x++)
	{
		var topSubX = document.getElementById("menu_" + x);
		
		topSubX.style.color = "#FFF";
		topSubX.style.background = "";
		topSubX.style.borderTopWidth = "0px";
		topSubX.style.borderLeftWidth = "0px";
		topSubX.style.borderRightWidth = "0px";
	}
	
	topSub.style.background = "#247eab";
	topSub.style.lineHeight = "31px";
	topSub.style.backgroundRepeat = "repeat-x";
	topSub.style.borderTopWidth = "0px";
	topSub.style.borderTopStyle = "solid";
	topSub.style.borderTopColor = "#000";
	//if (menuID != 8) {
		topSub.style.borderLeftWidth = "0px";
	//} 
	topSub.style.borderLeftStyle = "solid";
	topSub.style.borderLeftColor = "#cc0000"; 
	topSub.style.borderRightWidth = "0px";
	topSub.style.borderRightStyle = "solid";
	topSub.style.borderRightColor = "#cc0000";
	topSub.style.color = "#FFF"; 
	topSub.style.height = "31px";
	topSub.style.overflow = "hidden";

}

function activateSub(thisID) {

	for (y = 1; y <= 50; y++) {	
		var submenu = document.getElementById("submenu_" + y);
		if (submenu) {
			submenu.style.backgroundImage = "";
		}

	}

	document.getElementById(thisID).style.color = "#ff0000";
}