$(document).ready(function(){
	$('#slideshow').serialScroll({
		items: 'li',
		prev: '#prev',
		next: '#next',
		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: 300,
		force: true,
		stop: true,
		lock: false,
		cycle: false, //don't pull back once you reach the end
		jump: false, //click on the images to scroll to them
		step: 1/*,
		interval: 2000*/
	});
	
	
	$("#slideshow a").fancybox({
		'hideOnContentClick': true,
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayOpacity':  0.8,
		'overlayColor': '#000'		
	});

});
