jQuery(function(){
	
	
	
	// 相互リンクページ //
	$('#mutualColumn h3 span.btn a#motion').click(
		function () {
		 $(this).blur();
		 var targetOffset = $('h3#motion').offset().top;
		 $('html,body').animate({ scrollTop: targetOffset }, 'slow');
	
		 return false;
		 }
		)
	;
	
	// ページスクロール
	$('p.pageTop a').click(
		function () {
			$(this).blur();
			$('html,body').animate({ scrollTop: 0 }, 'slow');

			return false;
			}
		)
	;
	
	
});
