function getElement(id) {
	return document.getElementById ? document.getElementById(id) : document.all ? document.all(id) : document.layers? document.layers[id]:null;
}

function NavRollOver(menuSor,mid) {
	var tmp;
	tmp=getElement(mid);
	tmp.style.color = "#000000";
	menuSor.cells[0].bgColor = "#ffcc89";
	menuSor.cells[1].bgColor = "#ffcc89";
}

function NavRollOut(menuSor,mid) {
	var tmp;
	tmp=getElement(mid);
	tmp.style.color = "#680000";
	menuSor.cells[0].bgColor = "#ffd9b4";
	menuSor.cells[1].bgColor = "#ffd9b4";
}