<!--
URLALL = "http://www.messerschleiferei.at/";

if (document.images) {

  homeon = new Image();
  homeon.src = URLALL+"pics/button/home2.jpg";
  homeoff = new Image();
  homeoff.src = URLALL+"pics/button/home1.jpg";

  schleifenon = new Image();
  schleifenon.src = URLALL+"pics/button/schleifen2.jpg";
  schleifenoff = new Image();
  schleifenoff.src = URLALL+"pics/button/schleifen1.jpg";

  infoon = new Image();
  infoon.src = URLALL+"pics/button/info2.jpg";
  infooff = new Image();
  infooff.src = URLALL+"pics/button/info1.jpg"; 

  zubehoeron = new Image();
  zubehoeron.src = URLALL+"pics/button/zubehoer2.jpg";
  zubehoeroff = new Image();
  zubehoeroff.src = URLALL+"pics/button/zubehoer1.jpg";

  kontakton = new Image();
  kontakton.src = URLALL+"pics/button/kontakt2.jpg";
  kontaktoff = new Image();
  kontaktoff.src = URLALL+"pics/button/kontakt1.jpg";  

  rumon = new Image();
  rumon.src = URLALL+"pics/button/rum2.jpg";
  rumoff = new Image();
  rumoff.src = URLALL+"pics/button/rum1.jpg";

  editoron = new Image();
  editoron.src = URLALL+"pics/button/editor2.gif";
  editoroff = new Image();
  editoroff.src = URLALL+"pics/button/editor1.gif"; 

  metatagon = new Image();
  metatagon.src = URLALL+"pics/button/metatag2.gif";
  metatagoff = new Image();
  metatagoff.src = URLALL+"pics/button/metatag1.gif";

  }

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

// -->
