// ============================================================
// ■学研
// 
// %update / 09.05.25
// 
// ============================================================

// %use / jquery1.3.2～

// ------------------------------------------------------------
// ▼main
// ------------------------------------------------------------
$( document ).ready( function(){

	// クリッカブルマップのアウトラインを消す
	if(jQuery.browser.msie) {
		$('area.poly').focus( function() { $(this).blur(); } );
	}
	
	// マップ、先頭へ戻る
	$('#MapZone > area, .goPageTop > p > a').click(function(){
		$.scrollTo($(this).attr("href"), { speed: 1500, axis: 'y', queue: true, easing: 'easeOutCirc' });	return false;
	});

});
