$(function(){		$('.centerMiddle img').each(function(){				var src, osrc;				// 通常画像		src = this.src;				// オーバー画像		osrc = src.replace(/(.+?)\.png$/, '$1_ov.png');				// オーバー画像のプリロード		(new Image).src = osrc;				// 親要素にオーバー画像を指定		$(this).parent().css('background', 'url(' + osrc + ')');				// イベントの登録		$(this).hover(			function(){				$(this).stop(true).animate({'opacity': 0},400,'swing');			},			function(){				$(this).stop(true).animate({'opacity': 1},400,'swing');			}		);			});		});
