/* <![CDATA[ */


jQuery(function($) {
	var panelWidth = $("#slideshow").find("li").width();
	var panelCount = $("#slideshow").find("li.pan").size();
	var stripViewerWidth = panelWidth*panelCount;
	$("#slideContainer").css("width" , stripViewerWidth);
	$('#slideshow').serialScroll({
		items		: 'li.pan',
		prev		: 'div.stripNavL',
		next		: 'div.stripNavR',
		offset		: 0, //when scrolling to photo, stop 230 before reaching it (from the left)
		start		: 0, //as we are centering it, start at the 2nd
		duration	: 500,
		force		: false,
		stop		: true,
		lock		: false,
		cycle		: true, //don't pull back once you reach the end
		easing		: 'swing', //use this easing equation for a funny effect
		jump		: false //click on the images to scroll to them
		});
	});


/* ]]> */