<!-- // LET CODE BE IGNORED BY OLD BROWSERS
//--
// Table mouse highlighting script
//------

// MAINMENU CELL-COLOR
function cellhighlight(o)
{ o.style.backgroundColor = '#cbe0b8';      // V2.ROT highlight:  #ffd4b6: hellrot
  o.style.cursor = 'hand'; }                // V2.GRÜN highlight: #b3e08b: hellgrün

function cellnormal(o)
{ o.style.backgroundColor = '#ffffff'; }    // Normal: #ffffff weiss

// SUBMENU CELL-COLOR
function submenu_cellhighlight(o)
{ o.style.backgroundColor = '#b3e08b';      // V2.ROT highlight:  #ffd4b6: hellrot
  o.style.cursor = 'hand'; }                // V2.GRÜN highlight: #b3e08b: hellgrün

function submenu_cellnormal(o)
{ o.style.backgroundColor = '#ffffff'; }    // Normal: #ffffff weiss

//-- LET CODE BE IGNORED BY OLD BROWSERS -->

