﻿
/* ================================================
	=                                                 =
	=  smooth_scroll                                  =
	=                                                 =
	=================================================*/
	
/**
* Linkを <a href="#" id="to_top"> を指定することによりTOPへ
* スムーズにスクロールする。
* By ( http://d.hatena.ne.jp/dayflower/20081007/1223358033 )
**/

$(function () {
    if (! $.browser.safari) {
        $('#to_top').click(function () {
            $(this).blur();

            $('html,body').animate({ scrollTop: 0 }, 'quart');

            return false;
        });
    }
});

