$(function(){
    // jQueryアニメーションでページトップに戻る
    $(".jPageUp").click(function(){
        jPageTop();

        return false;
    });
})

// jQueryアニメーションでページトップ
function jPageTop() {
    $('html,body').animate({
        scrollTop: 0,
        scrollLeft: 0
    }, 'normal');
}
