var img = document.getElementsByTagName("img");
function ovr() {
	for(i = 0; i < img.length; i++) {
		img[i].onmouseover = function() {
			if(this.className == "ovr") {
				this.src = this.src.replace(".gif" , "_ovr.gif");
				this.src = this.src.replace(".jpg" , "_ovr.jpg");
				this.src = this.src.replace(".png" , "_ovr.png");
			}
		}
		img[i].onmouseout = function() {
			if(this.className == "ovr") {
				this.src = this.src.replace("_ovr.gif" , ".gif");
				this.src = this.src.replace("_ovr.jpg" , ".jpg");
				this.src = this.src.replace("_ovr.png" , ".png");
			}
		}
	}
}

window.onload = function() {
	ovr();
}
