/*
 * requires jquery.scrollTo-min.js
 */
$(document).ready( function(){
    //スクロール処理
    $("p.to-the-head>a, #to-the-head>a, #to-the-head-art-wide>a").click( function(){
        //IE6対応
        if ( jQuery.browser.msie && jQuery.browser.version < 7 ){
            $('body').animate({scrollTop:0}, 400, 'swing'); 
        } else {
            $.scrollTo( $('body'), 400, {easing:'swing'} );
        }
        return false;
    });
});