/**
 * Fügt den Pressebildern einen mouseover Effekt an
 *
 */

function initPage() {

	var images = document.getElementsByTagName("img");

	for (var i = 0; i < images.length; i++)  {

		if (images[i].className == "hoverlinks")  {

			images[i].onmouseover = function() {

			   this.src = this.src.replace(".gif", "_hover.gif");
			}
			images[i].onmouseout = function() {

				this.src = this.src.replace("_hover.gif", ".gif");
			}
		}
	}
}

if (window.addEventListener) {

	window.addEventListener("load", initPage, false);
} else if (window.attachEvent) {

	window.attachEvent("onload", initPage);
}
