	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({

			view:'#view',

			content:'#images',

			easing:'backout',

			//wrappers:'link,crop',

			wrappers:'',

			navigators:'a[id]',

			navigationMode:'r',

			circular:false,

			start:0

		});



		for(var i =2;i <=15; i++){

			$('#screen'+i+'').scrollShow({

				view:'#view'+i+'',

				content:'#images'+i+'',

				easing:'backout',

				//wrappers:'link,crop',

				wrappers:'',

				navigators:'a[id]',

				navigationMode:'r',

				circular:false,

				start:0

			});

		}

		

	 });
