$(document).ready(function(){

//IE6以下用にpngをfix
	$(document).pngFix();
//リンク先が外部ドメインの時にtargetを_blankに
	var domain = location.href.match(/^http(s)?(:\/\/[a-zA-Z0-9-_.]+)\//i)[0];
	$('a[href^=http]').not('[href*="'+domain+'"]').attr('target','_blank');
	
	$('#gnavi img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_off.gif', '_on.gif'));
	},
	function(){
		$(this).attr('src', $(this).attr('src').replace('_on.gif', '_off.gif'));
	});
	$('.btnBox img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_off.gif', '_on.gif'));
	},
	function(){
		$(this).attr('src', $(this).attr('src').replace('_on.gif', '_off.gif'));
	});
//pgTop
	$('.pgTop img').click(function(){
		$('html,body').animate({scrollTop: 0}, 'normal', 'swing');
	});
});
