jQuery(function( $ ){

	$.localScroll.defaults.axis = 'xy';
	
	$.localScroll.hash({
		target: '#content_frame',
		queue:true,
		duration:1500
	});
	
	$.localScroll({
		target: '#content_frame',
		queue:true,
		duration:800,
		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)
		}
	});
});
