<!--SCRIPTING GOES BELOW
if (document.images) {            // Active Images
  img1on = new Image();
  img1on.src = "http://www.tag7.ch/Bilder/hochzeitsfotograf_1.png";
	img2on = new Image();
  img2on.src = "http://www.tag7.ch/Bilder/wedding_photographer_1.png";
	img3on = new Image();
  img3on.src = "http://www.tag7.ch/Bilder/hochzeit_fotografie_1.png";
   
  img1off = new Image();
  img1off.src = "http://www.tag7.ch/Bilder/hochzeitsfotograf_1ov.png";
	img2off = new Image();
  img2off.src = "http://www.tag7.ch/Bilder/wedding_photographer_1ov.png";
	img3off = new Image();
  img3off.src = "http://www.tag7.ch/Bilder/hochzeit_fotografie_1ov.png";
}

// Function to 'activate' images.
function imgOff(imgName) {
  if (document.images) {
   document[imgName].src = eval(imgName + "on.src");
  }
}
// Function to 'deactivate' images.
function imgOn(imgName) {
  if (document.images) {
    document[imgName].src = eval(imgName + "off.src");
  }
}
// -->

