﻿/*--- jQuery ---*/

/*--- to top ---*/
$(function(){
     $("#totop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});

$(function(){
     $("#toTop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});

/*--- ie6 ---*/
$(function () {
     if ( $.browser.msie && $.browser.version <= 6 ) {
             $('body').prepend('<div class="error">※現在、旧式ブラウザをご利用中です。このウェブサイトを快適に閲覧するにはブラウザをアップグレードしてください。</div>');
     }
});
