Click #back-to-top to scroll back to the top.
jQuery(document).ready(function() {
jQuery('#back-to-top').click(function(event) {
event.preventDefault();
jQuery('html, body').animate({scrollTop: 0}, 300);
return false;
})
});