// JavaScript Document

//idがtopになっているリンクをクリックするとページ先頭にスクロール
$(function () {
    $('#top').click(function () {
        $(this).blur();
        $('html,body').animate({ scrollTop: 10 }, 'slow');
        return false;
    });
});

//hrefが#topになっているリンクをクリックするとページ先頭にスクロール
$(function () {
    $('a[href*=#top]').click(function () {
        $(this).blur();
        $('html,body').animate({ scrollTop: 10 }, 'slow');
        return false;
    });
});
