$(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');

//リンク先が外部、pdfファイル、メールリンクの時に自動でアイコンを追加
//アイコンをつけたくない場合は、class=noIconを付与。
$('a[href^=http]').not('[href*="'+domain+'"], .noIcon').after("<span class='linkEX'>&nbsp;</span>");
*/
	
	$('#gnavi img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.gif', 'on.gif'));
	},
	function(){
		$(this).attr('src', $(this).attr('src').replace('on.gif', '.gif'));
	});
	$('#btnSearch img, #rLoginBtn, #btnLogout img, .btnBox img, .btnBoxC img, .btnBoxC input, .btnBoxR img, .btnBoxL img, .localMenu img, .localMenu2 img').not('.noOver').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.png', 'On.png'));
	},
	function(){
		$(this).attr('src', $(this).attr('src').replace('On.png', '.png'));
	});
	$('.btnBox img, .btnBoxC img, .btnBoxR img, .btnBoxL img').not('.noOver').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.gif', 'On.gif'));
	},
	function(){
		$(this).attr('src', $(this).attr('src').replace('On.gif', '.gif'));
	});
	$('#rMenu li, #menuR li').hover(function(){
		$(this).css('background-image', $(this).css('background-image').replace('.gif', 'On.gif'));
	},
	function(){
		$(this).css('background-image', $(this).css('background-image').replace('On.gif', '.gif'));
	});
	$('.localMenu li, .localMenu2 li').hover(function(){
		$(this).css('background-image', $(this).css('background-image').replace('.jpg', 'On.jpg'));
	},
	function(){
		$(this).css('background-image', $(this).css('background-image').replace('On.jpg', '.jpg'));
	});
	
	
	//#loan
	$('#loan .repaymentBox img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.jpg', '_ov.jpg'));
	},
	function(){
		$(this).attr('src', $(this).attr('src').replace('_ov.jpg', '.jpg'));
	});
	
	//#cashing
	$('.wayList img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.gif', 'On.gif'));
	},
	function(){
		$(this).attr('src', $(this).attr('src').replace('On.gif', '.gif'));
	});
	//#repayment
	$('.repayList img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.gif', 'On.gif'));
	},
	function(){
		$(this).attr('src', $(this).attr('src').replace('On.gif', '.gif'));
	});

//pgTop
	$('.pgTop img').click(function(){
		$('html,body').animate({scrollTop: 0}, 'normal', 'swing');
	});
});
