﻿$(document).ready(function() {
	$("img").each(function(){
	var offSrc = $(this).attr("src");
	var onSrc = offSrc.replace("_off.","_on.");
	$(this).hover(
		function() { $(this).attr("src",onSrc); }
		,function() { $(this).attr("src",offSrc); }
		);
	});
});
