jQuery(function(){


	// imageBtn_hover
	$("img, input:image")
		.hover(
			function () {
				//透過対象の画像でない場合
				if ($(this).attr("src").match(/blank.gif/) == null) {
					$(this).attr("src", $(this).attr("src").replace(/\/on|off\/(.*?\.(:?gif|jpg|png))/, '/on/$1'));
				}
			},
			function () {
				//透過対象の画像でない場合
				if ($(this).attr("src").match(/blank.gif/) == null) {
					$(this).attr("src", $(this).attr("src").replace(/\/on|off\/(.*?\.gif|jpg|png)/, '/off/$1'));
				}
			}
		)
	;
	
	// ページスクロール
	$('dl#copy dd.pageTop a').click(
		function () {
			$(this).blur();
			$('html,body').animate({ scrollTop: 0 }, 'slow');

			return false;
			}
		)
	;
	
	// blank指定
	$("a.blank").attr("target", "_blank");

});
