// JavaScript Document
function displayMenu(currentMenu) {
var thisMenu = document.getElementById(currentMenu).style
 // The above creates a new function that will expand and contract certain menus that are specified.
if (thisMenu.display == "block") {
thisMenu.display = "none"
} else {
thisMenu.display = "block"
}
return false
}

