jQuery(function( $ ){
	$.localScroll.hash({
		//target: '#content', // Could be a selector or a jQuery object too.
		queue: true,
		reset: false,
		duration: 1500
	});
	
	$.localScroll({
		//target: '#content', // could be a selector or a jQuery object too.
		queue: true,
		duration: 1200,
		reset: false,
		hash: false,
		offset: {
			top: -40, 
			left: 0
		},
		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)
		}
	});
});	

