<!--SCRIPTING GOES BELOW
if (document.images) {            // Active Images
  img1on = new Image();
  img1on.src = "fotograf-hochzeit/hochzeitsfotograf.png";
	img2on = new Image();
  img2on.src = "fotograf-hochzeit/wedding-photographer.png";
	img3on = new Image();
  img3on.src = "fotograf-hochzeit/hochzeitsfotos.png";
   
  img1off = new Image();
  img1off.src = "fotograf-hochzeit/hochzeitsfotograf-over.png";
	img2off = new Image();
  img2off.src = "fotograf-hochzeit/wedding-photographer-over.png";
	img3off = new Image();
  img3off.src = "fotograf-hochzeit/hochzeitsfotos-over.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");
  }
}
// -->

