// rollover.js

BildAus1 = new Image();
BildAus1.src = 'images/gen/pfeil_l.gif';
BildAn1 = new Image();
BildAn1.src = 'images/gen/pfeil_l_h.gif';

BildAus2 = new Image();
BildAus2.src = 'images/gen/pfeil_r.gif';
BildAn2 = new Image();
BildAn2.src = 'images/gen/pfeil_r_h.gif';

function Bildwechsel (Bildnr,Bildobjekt)
{
  window.document.images[Bildnr].src = Bildobjekt.src;
}

function hover_on(which)
{
 which.className = 'hover'
}

function hover_off(which)
{
 which.className = 'normal'
}
