
if (document.images)
 {
 Bild0 = new Image();
 Bild0.src = "Bilder/kissen.jpg";
 Bild1 = new Image();
 Bild1.src = "Bilder/abzeichen-bergbau.jpg";
 Bild2 = new Image();
 Bild2.src = "Bilder/motorrad.jpg";
 Bild3 = new Image();
 Bild3.src = "Bilder/wappen-1.jpg";
 }

 function Over(BildNr)
 {
  if (document.images) {
  document.images["Bild"].src = eval("Bild" + BildNr + ".src");}
 }

 function Out(BildNr)
 {
  if (document.images) {
  document.images["Bild"].src = eval("Bild" + BildNr + ".src");}
 }

  function Click(BildNr)
 {
  if (document.images) {
  document.images["Bild"].src = eval("Bild" + BildNr + ".src");}
  onmouseout="Out(0)"
 }
