client/static/js/page_scroll.js (12 lines of code) (raw):
$(function () {
$('a[href^="#"]').click(function () {
var speed = 500;
var href = $(this).attr("href");
var target = $(href == "#" || href == "" ? 'html' : href);
var position = target.offset().top;
$("html, body").animate({
scrollTop: position
}, "slow", "swing");
return false;
});
});