function menuSwitch (status) {
	var container = document.getElementById("menu-switch");
	var switches = container.getElementsByTagName("li");
	var terminator = document.getElementById("gatherer-terminator");
	if (status == "menu") {
		switches[0].className = "active-left";
		switches[1].className = "inactive-right";
		document.getElementById("menu").style.display = "block";
		document.getElementById("gatherer").style.display = "none";
		terminator.style.display = "none";
	} else {
		switches[0].className = "inactive-left";
		switches[1].className = "active-right";
		document.getElementById("menu").style.display = "none";
		document.getElementById("gatherer").style.display = "block";
		terminator.style.display = "block";
	}
}