$(document).ready(function(){	
	
	$("#slider").easySlider({
		auto: true, 
		continuous: true
	});
	
	$.localScroll.defaults.axis = 'xy';
	

	
	/**
	 * NOTE: I use $.localScroll instead of $('#navigation').localScroll() so I
	 * also affect the >> and << links. I want every link in the page to scroll.
	 */
	$(".pane").localScroll({
		target: '#scroller-container', // could be a selector or a jQuery object too.
		queue:true,
		duration:750,
		hash:false
	});
	
});