// JavaScript Document

<!--
function menuOver(tdId) {
document.getElementById(tdId).style.backgroundColor='#8099AA';
}
function menuOut(tdId) {
document.getElementById(tdId).style.backgroundColor='#505A70';
}
//-->

