jQuery(function(){

//トップへ戻る
  jQuery('#gototop').click(function () {
    jQuery(this).blur();
    jQuery('html,body').animate({ scrollTop: 0 }, 'slow');
    return false;
  });

//メニューバー
  jQuery('ul.sf-menu').superfish();

});
