function showSubmenu(theSubMenu) {
	hideAllSubMenus();	
	$(theSubMenu).show();
	pageTinter(1);  // show the "iamking" DIV dat Dims the page, the defining function is located in "js.js"
}
function hideAllSubMenus() {
	$('submenu1').hide();
	$('submenu2').hide();
	$('submenu3').hide();
	pageTinter(0);		// hides the "iamking" DIV dat Dims the page
}

function tweaker(one,two) {
	$(one).style.zIndex = -500;
	$(two).style.zIndex = -500;
}

function kill(one,two,three) {
	$(one).style.zIndex = 'auto';
	$(two).style.zIndex = 'auto';
	$(three).style.zIndex = 'auto';
}



