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 = "#5BD5FD";
findTag(eItem).style.color="#ffffff";
	eItem.style.cursor="hand";
//window.status = findTag(eItem).getAttribute("HREF");
}

function NavMOut(eItem){
	eItem.style.backgroundColor = eItem.DefaultBgColor;
	findTag(eItem).style.color=eItem.DefaultTxtColor
//window.status= "";
}

function NavMDown(eItem){
	findTag(eItem).style.color="#9E0B0E"
}

function NavMUp(eItem){
	location.href= findTag(eItem).getAttribute("HREF")
}




function Nav2MOver(eItem){
	eItem.DefaultBgColor = eItem.style.backgroundColor;
	eItem.DefaultTxtColor = eItem.style.color;
	eItem.style.backgroundColor = "#efefef";
findTag(eItem).style.color="#000000";
	eItem.style.cursor="hand";
//window.status = findTag(eItem).getAttribute("HREF");
}

function Nav2MOut(eItem){
	eItem.style.backgroundColor = eItem.DefaultBgColor;
	findTag(eItem).style.color=eItem.DefaultTxtColor
//window.status= "";
}

function Nav2MDown(eItem){
	findTag(eItem).style.color="#000000"
}

function Nav2MUp(eItem){
	location.href= findTag(eItem).getAttribute("HREF")
}



