jQuery.easing.easeOutQuart=function(x,t,b,c,d){return -c*((t=t/d-1)*t*t*t-1)+b;};

$(function() {
	$('div.scroll-container').serialScroll({
		items:'.scroll-column',
		prev:'a.prev',
		next:'a.next',
		offset:0, 
		start:0,
		duration:1200,
		step:1,
		force:true,
		stop:true,
		lock:false,
		cycle:false, //don't pull back once you reach the end
		easing:'easeOutQuart', //use this easing equation for a funny effect
		jump: false //click on the images to scroll to them
	});        	       
});

