function over( theTableData ) {
  theTableData.style.backgroundColor='#F6F5B8'
  theTableData.all.tags('A')[0].style.color='#1E1E8C'
  theTableData.all.tags('A')[0].style.textDecoration='underline'
}

function out( theTableData ) {
  theTableData.style.backgroundColor='#3366CC'
  theTableData.all.tags('A')[0].style.color='#FFFFFF'
  theTableData.all.tags('A')[0].style.textDecoration='none'
}
