jQuery(function( $ ){
	//borrowed from jQuery easing plugin
	//http://gsgd.co.uk/sandbox/jquery.easing.php
	$.easing.backout = function(x, t, b, c, d){
		var s=1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	};

	$('#slideshow').serialScroll({
		items:'li',
		prev:'#screen a#left',
		next:'#screen a#right',
		offset:0,
		start:0,
		duration:1200,
		force:true,
		stop:true,
		lock:false,
		cycle:false,
		easing:'backout', 
		jump: false,
		exclude:4
	});

});
