//javascript for the mission statement ontop of the picture on the homepage
function showMission(){
	var mission = document.getElementById("mission");

	if(mission.style.display=="none"){
		mission.style.display = "block";
	} else {
		mission.style.display = "none";
	}	
	
	document.getElementById("menu_parent_About").onmouseout();
	return false;
}