jQuery(document).ready (function () {
	jQuery ("img.rollover").each (function () {
		jQuery ("<img />").attr ("src", this.src.replace (/\.([^.]+)$/, "_hover." + "$1"));
	});
	jQuery ("a:has(img.rollover)").hover (function () {
		jQuery ("img.rollover", this).each (function () {
			this.src = this.src.replace (/\.([^.]+)$/, "_hover." + "$1");
		});
	}, function () {
		jQuery ("img.rollover", this).each (function () {
			this.src = this.src.replace (/_hover\.([^.]+)$/, "." + "$1");
		});
	});
	jQuery ("input.rollover").each (function () {
		jQuery ("<img />").attr ("src", this.src.replace (/\.([^.]+)$/, "_hover." + "$1"));
		jQuery (this).hover (function () {
			this.src = this.src.replace (/\.([^.]+)$/, "_hover." + "$1");
		}, function () {
			this.src = this.src.replace (/_hover\.([^.]+)$/, "." + "$1");
		});
	});
});



