// 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 = '#FF5555';
   }
}


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

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

