	function highlightMenu(menuId, color) {
		var menu = document.getElementById(menuId);
		if (menu == null ) return;
		menu.style.color=color;
	}
