

function navover(currentLink,cell) {
currentLink.style.color = "#FFCC00";

var thisCell = document.getElementById(cell);
thisCell.style.backgroundColor = "#66CF32";
}


function navout(currentLink,cell) {
currentLink.style.color = "#FFFFFF";

var thisCell = document.getElementById(cell);
thisCell.style.backgroundColor = "#55AA2B";
}