/*
 * smooth scroll
 */

$(function () {
    if (! $.browser.safari) {
        $('.pagetop a').click(function () {
            $(this).blur();

            $('html,body').animate({ scrollTop: 0 }, 'slow');

            return false;
        });
    }	
});


