jQuery(function()
{
    jQuery('#scrollTop').click(function(event)
    {
        jQuery.scrollTo(jQuery(this).attr('href'), 1000, {easing: 'easeOutExpo'});
        
        return false;
    });
});