$(function(){
	// ロールオーバー処理
	$("img.hv").hover(
		function(){
			if(this.src.indexOf("_np") == -1){
				this.src=this.src.replace(".gif", "_hv.gif");
				this.src=this.src.replace(".jpg", "_hv.jpg");
				this.src=this.src.replace("_hv_hv.jpg", "_hv.jpg");
				this.src=this.src.replace(".png", "_hv.png");
			}
		},
		function(){
			if(this.src.indexOf("_np") == -1){
				this.src=this.src.replace("_hv", "");
			}
		}
	);

	$("a img").parent().focus(function(){this.blur();});
});

