jQuery(document).ready(function(){
    jQuery('a[href^=#]').click(function(){
        var target;
        target = jQuery( jQuery(this).attr('href') );
        if (target.length == 0) {
            return;
        }
        jQuery('html, body').animate({scrollTop: target.offset().top});
        return false;
    });
});

