$(document).ready(init);



function init()
{		
	//alert('1');
$('#slideshow').serialScroll({
		items:'li',
		prev:'#prev1',
		next:'#next1',
		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:1200,
		interval:15000,
		force:true,
		stop:false,
		auto:false,//
		lock:false,
		cycle:true, //don't pull back once you reach the end
		easing:'easeOutQuart', //use this easing equation for a funny effect
		jump: false //click on the images to scroll to them
	});
}
