
function navover(currentLink,cell) {
	currentLink.style.color = "#FFFFFF";
	var thisCell = document.getElementById(cell);
	thisCell.style.backgroundColor = "#005CAB";
}


function navout(currentLink,cell) {
	currentLink.style.color = "#009900";
	var thisCell = document.getElementById(cell);
	thisCell.style.backgroundColor = "#FFFFFF";
}
