
//This Javascript file controls the drop down menu for the subpages.
function menu_drop(menu){
	document.getElementById(menu).style.display = "block";       
}
function menu_up(menu){
	document.getElementById(menu).style.display = "none";       
}
