/**
 * window.onload
 */
jQuery(function() {
    /**
     * イージング
     */
    jQuery.easing.quart = function(x, t, b, c, d) {
        return -c * ((t=t/d-1)*t*t*t - 1) + b;
    };
    
    /**
     * 「ページ先頭へ」リンク
     * @see jQuery でページスクロール - daily dayflower http://d.hatena.ne.jp/dayflower/20081007/1223358033
     */
    jQuery('#scroll_to_top').click(function() {
        jQuery(this).blur();
        jQuery('html,body').animate({ scrollTop: 0 }, 1000, 'quart');
        return false;
    });
});

