// Menu2 functions, with help from Karlprof.com (he wrote a ton of code that didn't work, but I thought it'd be fair to put a link in anyway)

function show(name,alignment) {
		hide('empty_menu');
		hide('tv_menu');
		hide('drama_menu');
		hide('ent_menu');
		hide('life_menu');
		hide('reality_menu');
		hide('corp_menu');
	document.getElementById(name).style.display = 'block';
	document.getElementById(name).style.textAlign = alignment;
}

function hide(name) {
	document.getElementById(name).style.display = 'none';
}