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;
	};

	$('#scrollshow_screen').scrollShow({
	    view: '#scrollshow_view',
	    content: '#scrollshow_images',
		easing:'backout',
		//wrappers: 'link,crop',
		wrappers: 'link',
		navigators:'a[id]',
		navigationMode:'sr',
		circular:true//,
		//start:0
	});
});
