function hover_in (objekt) {
  objekt.style.backgroundColor="#FF0000";
  objekt.style.color="#000000";
  objekt.style.cursor='hand';
}

function hover_out (objekt) {
  objekt.style.backgroundColor="#d60000";
  objekt.style.color="#ffffff";
}

function hover_in_01 (objekt) {
  objekt.style.backgroundImage="url(gfx/menuba03.gif)";
  objekt.style.color="#000000";
  objekt.style.cursor='hand';
}

function hover_out_01 (objekt) {
  objekt.style.backgroundImage="url(gfx/menuba01.gif)";
  objekt.style.color="#ffffff";
}

function hover_in_02 (objekt) {
  objekt.style.backgroundImage="url(gfx/menuba04.gif)";
  objekt.style.color="#000000";
  objekt.style.cursor='hand';
}

function hover_out_02 (objekt) {
  objekt.style.backgroundImage="url(gfx/menuba02.gif)";
  objekt.style.color="#ffffff";
}