function nav(u) { document.location.href = u; }

function showDropMenu(dropMenuID) {

	var thisDropMenu = document.getElementById(dropMenuID);
	
	thisDropMenu.style.display = '';
}

//=========================================================================

function hideDropMenu(dropMenuID) {

	var thisDropMenu = document.getElementById(dropMenuID);
	
	thisDropMenu.style.display = 'none';
}
