// Navigation Rollover
function NavIn(tcID,nCol) {
  var tcItem = document.getElementById(tcID);
	tcItem.style.backgroundColor = nCol;
}
function NavOut(tcID) {
  var tcItem = document.getElementById(tcID);
	tcItem.style.backgroundColor = "";
}
