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;
	};

	
	$('#screen').scrollShow({
		elements:'div',//elements selector (relative to view)
		itemSize:{
			height:100,
			width:200
		},
		view:'#view',
		content:'#images',
		easing:'backout',
		wrappers:'resize',
		navigators:'a[id]',
		navigationMode:'s',
		circular:false,
		start:0
	});
	
 });
	
