<!--This is Daniel Miller's javascript adjustment for the navContainer height to match that of the mainContainer, researched alternatives but they were unsucessful HTML div hacks, javascript probably simplest way to go-->
window.onload = startUp;

function startUp(){	

document.getElementById("mainContainer").style.minHeight = document.getElementById("innerNav").offsetHeight + "px"; 
document.getElementById("NavContainer").style.height = document.getElementById("mainContainer").offsetHeight + "px"; 

}


/* Staff Website Section */

function staffSwitch() {
	
	
	
}