//Mausovereffekt der Tabellenzellen im Menü
function mOvr(src,clrOver,ftOver) {
  src.style.cursor = 'hand'; 
  src.bgColor = clrOver; 
  src.style.color = ftOver;
}

//Wiederherstellen der eigentlichen Tabellenzellenfarbe im Menü
function mOut(src,clrIn,ftIn) {
  src.style.cursor = 'default';
  src.bgColor = clrIn; 
  src.style.color = ftIn;
}

//Tabellenzellen mit Linkfunktion
function link(where) {
  window.location.href= where;
}



