function findTag(eItem) {
	var objATag = new Object();
	objATag = eItem.all.tags("A").item(0)
	return objATag;
}

function NavMOver(eItem){
	eItem.DefaultBgColor = eItem.style.backgroundColor;
	eItem.DefaultTxtColor = eItem.style.color;
	eItem.style.backgroundColor = "#3399FF";
	eItem.style.cursor="hand";
}

function NavMOver2(eItem){
	eItem.DefaultBgColor = eItem.style.backgroundColor;
	eItem.DefaultTxtColor = eItem.style.color;
	eItem.style.backgroundColor = "#154EB7";
	eItem.style.cursor="hand";
}

function NavMOver3(eItem){
	eItem.DefaultBgColor = eItem.style.backgroundColor;
	eItem.DefaultTxtColor = eItem.style.color;
	eItem.style.backgroundColor = "#FFCC00";
	eItem.style.cursor="hand";
}


function NavMOut(eItem){
	eItem.style.backgroundColor = eItem.DefaultBgColor;
	findTag(eItem).style.color=eItem.DefaultTxtColor
}

function NavMDown(eItem){
	findTag(eItem).style.color="#3399FF"
}

function NavMDown2(eItem){
	findTag(eItem).style.color="#154EB7"
}

function NavMDown3(eItem){
	findTag(eItem).style.color="#FFCC00"
}


function NavMUp(eItem){
	top.location.href= findTag(eItem).getAttribute("HREF")//leave "top" in, so we can navigate away from framed pages.
}