if (top.location == self.location) {
	top.location.href = "../index.html"
}
function toggleMenu(currElem) {
	if (document.all) {
		menuObj = eval("document.all." + currElem + ".style")
		menuObj.pixelTop = toggleVal(menuObj.pixelTop)
	}
	else {
		menuObj = eval("document." + currElem)
		menuObj.top = toggleVal(menuObj.top)
	}
}

function toggleVal(inVal) {
	if (inVal == -5) {
		return -90
	}
	return -5
}

