// image swap

$('#thumbs').delegate('img','click', function(){
	$('#imgLarge').attr('src',$(this).attr('src').replace('thumbs/',''));
});


// thumb scroll

$(document).ready(function(){
		$('#thumbs').serialScroll({
			items:'li',
			prev:'.prev',
			next:'.next',
			step: 5,
			axis: 'y',
			// offset:-5,
			start:0,
			// duration:500,
			// interval:4000,
			force:false,
			stop:true,
			lock:false,
			exclude:1,
			cycle:false, //don't pull back once you reach the end
			jump: false //click on the images to scroll to them
		});
});




