$(function(){
    //クリックすると、トップへ戻る
    $('#toTop').click(function(){
        $(this).blur();
        
        $($.browser.opera ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body')
            .animate({scrollTop: 0}, 'slow');
        
        return false;
    });
});
