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;
}

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