// JavaScript Document

// this variable holds the old section to be displayed as none
var oldSection = '';
	// function called by rolling over the two links
	function switchSection(currSection) {
		if(oldSection){
			document.getElementById(oldSection).style.display = "none";
		}
		oldSection = currSection;
	}
