
function NavMOver(eItem,color){
	eItem.DefaultBgColor = eItem.style.backgroundColor;
	eItem.DefaultTxtColor = eItem.style.color;
	eItem.style.backgroundColor = color;
     
        //eItem.style.cursor = "hand";
	//window.status = findTag(eItem).getAttribute("HREF");
}

function NavMOut(eItem){
	eItem.style.backgroundColor = eItem.DefaultBgColor;
	
//window.status= "";
}

