$(function(){
	$.each($("img.rollover"), function(){
		var imgPass = $(this).attr("src");
		var imgType = imgPass.substring(imgPass.lastIndexOf('.'), imgPass.length);
		var loadImgPass = imgPass.replace(imgType, '_over' + imgType);
		new Image().src = loadImgPass;
		$(this).attr({oversrc:loadImgPass});
	});
	$("img.rollover").hover(
		function(){
			$(this).attr({src:$(this).attr("oversrc")});
		},
		function(){
			$(this).attr({src:$(this).attr("src").replace("_over","")});
		}
	);
});