////////////////////////////////////////others jquery////////////////////////////////////////スムーズスクロール$(function(){     $("#gotop a").click(function(){     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'fast','swing');     return false;     })});//class="blank" 属性を追加した場合のみ別ウインドウにする場合 colorbox時は不可//$(function(){//    $(".blank").append('&nbsp;<img src="/img/popup.gif" height="12" width="14" alt="" />');//    $(".blank img").css("vertical-align","text-top");//    $(".blank").after('&nbsp;');//    $('.blank').click(function(){ //       window.open(this.href, '_blank');  //      return false; //   });//});$(document).ready(function() {   //外部リンクは全て別ウインドウにする場合   //$('a[href^="http://"]').attr("target", "_blank");     //class="external" (relも可能)属性を追加した場合のみ別ウインドウにする場合   $("a[class='blank']").click(function(){      this.target = "_blank";   });});
