var currentColor;

function showSub(menuId)
{
	document.getElementById(menuId + "Sub").style.display = "block";
	currentColor = document.getElementById(menuId + "Menu").style.backgroundColor;
	document.getElementById(menuId + "Menu").style.backgroundColor = "#000000";
	document.getElementById(menuId + "Menu").style.color = "#EE1C23";	
	
	if(menuId == "home")
		document.getElementById(menuId + "Menu").style.backgroundImage = "url('/images/wo/winner_logo_rood.jpg')";	
}

function hideSub(menuId)
{
	document.getElementById(menuId + "Sub").style.display = "none";
	document.getElementById(menuId + "Menu").style.backgroundColor = currentColor;
	document.getElementById(menuId + "Menu").style.color = "#FFFFFF";	
	
	if(menuId == "home")
		document.getElementById(menuId + "Menu").style.backgroundImage = "url('/images/wo/winner_logo_wit.jpg')";		
}
