/********************
 *上にスクロールさせる
*********************/
$(function () {

    if (! $.browser.safari && ! $.browser.opera) {
        $('.link_to_top').click(function () {
            $(this).blur();
            $('html,body').animate({ scrollTop: 0 }, 800);
            return false;
        });
    }
});
