jQuery(function( $ ){
	$.localScroll.defaults.axis = 'yx';
	 
	$.localScroll.hash({
		target: window, 
		offset:{left:-50, top:-190},
		queue:true,
		duration:1000
	});
	
	
	$.localScroll({
		target: window, 
		offset:{left:-50, top:-190},
		queue:true,
		duration:1000,
		hash:false,
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
});
