jQuery(function( $ ){
	$.localScroll.defaults.axis = 'y';
	$.localScroll.hash({
		target: '#content',
		queue:true,
		duration:800
	});
	$.localScroll({
		queue:true,
		duration:800,
		hash:true,
		easing:'easeInOutExpo',
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
});