window.onload = function(){
    var links = document.getElementsByTagName("a");
	
	for (var i=0; i < links.length; i++) {
		if (links[i].className == "jotpegi") {
			
			links[i].onmouseover = function() {
				var src = this.childNodes[0].src;
				if (!src.match(/hover/)) {
					var newsrc = src.replace(/\.jpg$/, "_hover.jpg");
					this.childNodes[0].src = newsrc;
				}
			};

			links[i].onmouseout = function(){
				var src = this.childNodes[0].src;
				if (src.match(/hover/)) {
					var newsrc = src.replace(/_hover\.jpg$/, ".jpg");
					this.childNodes[0].src = newsrc;
				}
			};
			
		}
	}
}
