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;  OnMouseClick default barva texta
	findTag(eItem).style.color="#FFFFFF" // OnMouseClick barva texta
	eItem.style.backgroundColor = "#F3A900"; // OnMouseOver barva
	eItem.style.cursor="hand";
//window.status = findTag(eItem).getAttribute("HREF");
}

function NavMOut(eItem){
	eItem.style.backgroundColor = eItem.DefaultBgColor;
	findTag(eItem).style.color="#2C2C7E"
//window.status= "";
}

function NavMDown(eItem){
	findTag(eItem).style.color="#000000" // OnMouseClick barva texta
	eItem.style.backgroundColor = "#F8CB00";
}

function NavMUp(eItem){
	self.location.href= findTag(eItem).getAttribute("HREF")    // leave "top" in, so we can navigate away from framed pages.
	eItem.style.backgroundColor = eItem.DefaultBgColor;
}