I\'m not sure how to call the effect, but can someone point me into a library that would help me do the same effect as this website?
http://www.makr.com
Basi
You can give this simple jQuery plugin (AnimateScroll) a whirl. It is quite easy to use.
1. Scroll to the top of the page:
$('body').animatescroll();
2. Scroll to an element with ID section-1:
section-1
$('#section-1').animatescroll({easing:'easeInOutBack'});
Disclaimer: I am the author of this plugin.