// cell functions
function mOver(cell)
{
   if (!cell.contains(event.fromElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#B5D7E1';
   }
}

function mOut(cell)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#e8e6d0';
   }
}

function mClick(cell)
{
   if(event.srcElement.tagName=='td')
   {
      cell.children.tags('A')[0].click();
   }
}
