$(function () {  // アンカースクロール  $('a[href^=#]').click(function() {    var href= this.hash;	var $target = $(href == '#top' ? 'body' : href);		if($target.size()) {	  var top = $target.offset().top;	  $(this).blur();	  $($.browser.safari ? 'body' : 'html').animate({scrollTop:top}, 800, 'swing');	}	return false;  });});$(function () {  $('.pagetop_anchor a').click(function () {    $(this).blur();    $('html,body').animate({ scrollTop: 0 }, 'slow');    return false;  });  $('#legend area').click(function(){    window.open(this.href, "popup","width=650,height=700,scrollbars=1,resizable=1");    return false;  });});