jQuery(function( $ ){

	$("#middleNav").localScroll({
		target: '#leftContentBottom',
		axis:'xy',
		queue:true,
		duration:2000,
		hash:true,
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
	
	$("#middleNav").localScroll({
		target: '#contentLeft',
		axis:'xy',
		queue:true,
		duration:2000,
		hash:true,
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
	
	$("#localScroll").localScroll({
		target: '#unitsWrapper',
		axis:'xy',
		queue:true,
		duration:1000,
		hash:true,
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
	
	$("#middleNav").localScroll({
		target: '#contentBottom',
		axis:'xy',
		queue:true,
		duration:1000,
		hash:true,
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
	
	$("#specsSubNav").localScroll({
		target: '#contentLeft',
		axis:'yx',
		queue:true,
		duration:1000,
		//easing:'backinout',
		hash:true,
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
	
});

