// Shows and Hides Submenus 
// Could have been done with pure CSS in a perfect world without IE6

function show(id){
	document.getElementById(id + "_sub").style.display ="block";
}
function hide(id){
	document.getElementById(id + "_sub").style.display = "";
}