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