// cell functions
 pic = new Image();
 pic.src="nav/nav_bg.jpg";


function mOver(cell)
{  
   /*cell.cursor = 'hand';*/
   if (document.getElementById)
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#ffe6b1';
   }
}

function mOut(cell)
{
   if (document.getElementById)
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#FFFFFF';
   }
}

function mClick(cell)
{
   window.location.href = cell;
   /*if(event.srcElement.tagName=='TD')
   {
      cell.children.tags('A')[0].click();
   }*/
}

