
$(document).ready(function(){

	$('#projects_scroller_content').serialScroll({
		items:'li',
		prev:'#projects_scroller a.prev',
		next:'#projects_scroller a.next',
		//offset:-230, //when scrolling to photo, stop 230 before reaching it (from the left)
		//start:1, //as we are centering it, start at the 2nd
		duration: 600,
		force:true,
		stop:true,
		lock:false,
		cycle: true, //don't pull back once you reach the end
		easing:'easeOutQuart' //use this easing equation for a funny effect
		//jump: true //click on the images to scroll to them
	});
	
	$('#library_scroller_content').serialScroll({
		items:'li',
		prev:'#library_scroller a.prev',
		next:'#library_scroller a.next',
		//offset:-230, //when scrolling to photo, stop 230 before reaching it (from the left)
		//start:1, //as we are centering it, start at the 2nd
		duration: 600,
		force:true,
		stop:true,
		lock:false,
		cycle:true, //don't pull back once you reach the end
		easing:'easeOutQuart' //use this easing equation for a funny effect
		//jump: true //click on the images to scroll to them
	});
		
	$('#blog_scroller_content').serialScroll({
		items:'li',
		prev:'#blog_scroller a.prev',
		next:'#blog_scroller a.next',
		//offset:-230, //when scrolling to photo, stop 230 before reaching it (from the left)
		//start:1, //as we are centering it, start at the 2nd
		duration: 600,
		force:true,
		stop:true,
		lock:false,
		cycle:true, //don't pull back once you reach the end
		easing:'easeOutQuart' //use this easing equation for a funny effect
		//jump: true //click on the images to scroll to them
	});
	
	
});

