/*
 * jQuery plugin config
 *
 */


// ページ内アンカー・スクロール　scroll page

jQuery.easing.quart = function (x, t, b, c, d) {
    return -c * ((t=t/d-1)*t*t*t - 1) + b;
};  

$(function () {
        $('.link-pagetop').click(function () {
            $(this).blur();
            $('html,body').animate({ scrollTop: 0 }, 300, 'quart');
            return false;
        });
});

