// JavaScript Document


//window.onload = turnOff;

// reset the bottom of the page
function bottomsOff() {
	
	for (var i = 1; i < 7; i++)
	{
		var buildVar = "bottom" + [i];
		var thisElement = document.getElementById(buildVar);
		thisElement.style.display = "none";
	}	
	
}

// reset the elements
function turnOff() {
	
	for (var i = 1; i < 8; i++)
	{
		var buildVar = "atMenuText" + [i];
		var thisElement = document.getElementById(buildVar);
		thisElement.style.display = "none";
	}	
	
}

function on(thisOne) {
	thisOne.style.display = "block";
}

function off(thisOne) {
	thisOne.style.display = "none";
}
