// cell functions
function mOver(cell)
{
   if (!cell.contains(event.fromElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#abb3cd';

   }
}

// function for navigation on the left side of each page
function mOut(cell)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#cccccc';
   }
}

// function for Sitemap (mapa.htm) with different colors
function mOutMapa(cell)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#ffffff';
   }
}

function mClick(cell)
{
   if(event.srcElement.tagName=='TD')
   {
      cell.children.tags('A')[0].click();
   }
}
