// プリロード、ロールオーバー

$(function(){
	$("img.rollover").hover(function() {
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(ov)*(\.[a-z]+)$/, "$1ov$3"));
	}, function() {
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(ov)+(\.[a-z]+)$/, "$1$3"));
	});
});

