function mOver(cell)
 {
      //cell.bgColor = color;
      //cell.style.color = '';
	  //

if (!cell.contains(event.fromElement))
   {
		cell.style.cursor = 'hand';
	  	//cell.bgColor = "FFFFFF";
      	//cell.style.color = '000000';
		cell.background = '../gfx/menu/bg_sub_aktiv.gif.gif';

  }
}
function mOut(cell)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'default';
      //cell.bgColor = '';
	  cell.background = '../gfx/menu/bg_sub_inaktiv.gif.gif';
   }
}
function mClick(cell)
{
 if(event.srcElement.tagName == 'TD')
{
      cell.children.tags('A')[0].click();
		cell.bgColor = '#333333';
   }
}
