function displayContent(currentContent,currentLink) 
{
	var thisContent = document.getElementById(currentContent).style
	var thisLink = document.getElementById(currentLink).style	
	// The above creates a new function that will expand and contract certain menus that are specified.
	if (thisContent.display == "block") {
		thisContent.display = "none";
		thisLink.display = "block";
	} else {
		thisContent.display = "block";
		thisLink.display = "none";
	}
	return false
}	