/*!
 * jQuery JavaScript
 */

/***外部リンクに_blank指定***/
$(document).ready( function () {
	$("a[href^=http]").not("[href*="+location.hostname+"]").attr("target","_blank").addClass("extlink");
	//img要素を子に持つa要素のクラスは削除
	$("img").closest("a").removeClass("extlink");
});

$(function(){
	$("img.rollover").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/,"$1_o$2"));
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_o(\.[a-z]+)$/,"$1$2"));
	}).each(function(){
		$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/,"$1_o$2"));
	});
});


