$(document).ready(function() {
	$.localScroll.defaults.axis = 'y';
	
	$.localScroll.hash({
		duration:1000,
		easing:'easeInOutExpo'
	});
	
	$.localScroll({
		queue:true,
		duration:1000,
		easing:'easeInOutExpo',
		hash:true,
		onBefore:function( e, anchor, $target ){
			// The 'this' is the settings object, can be modified
		},
		onAfter:function( anchor, settings ){
			// The 'this' contains the scrolled element (#content)
		}
	})
});
