function showMenu(_currentMenu){	
	//_currentMenu.getElementsByTagName('UL')[0].style.display = "block";
	document.getElementById(_currentMenu).style.display = 'block';
}

function hideMenu(_currentMenu){
	//_currentMenu.getElementsByTagName('UL')[0].style.display = 'none';
	document.getElementById(_currentMenu).style.display = 'none';
}

function highlightItem(_menuItem,_color,_bgColor){
	_menuItem.style.color = _color;	
	_menuItem.style.backgroundColor = _bgColor;
	_menuItem.style.backgroundImage = "url('http://oncourss.com/wp-content/themes/newOnCouRSS/images/navHoverBackground.jpg')";
	
}

function unhighlightItem(_menuItem,_color,_bgColor){
	_menuItem.style.color = _color;
	_menuItem.style.backgroundColor = _bgColor;
	_menuItem.style.backgroundImage = "none";
}