	function NavMOver(eItem){
		eItem.style.cursor = "hand";
		eItem.style.backgroundColor = "white";
		findTag(eItem).style.color = "#981A37";
		}
	function NavMOut(eItem){
		eItem.style.backgroundColor = "transparent";
		findTag(eItem).style.color = "white";
		}
	function NavMUp(eItem){
		top.location.href = findTag(eItem).getAttribute("HREF")
		}
	function findTag(eItem){
		var objATag = new Object();
		objATag = eItem.all.tags("A").item(0);
		return objATag;
	}
