;(function($) {
$(document).ready(function() {
	
	$('#OuterFrame').serialScroll({
			items:'li',
			prev:'#LeftArrow',
			next:'#RightArrow',
			// offset:-230, //when scrolling to photo, stop 230 before reaching it (from the left)
			start:0, //as we are centering it, start at the 2nd
			duration:400,
			force:true,
			stop:true,
			lock:false,
			cycle:false, //don't pull back once you reach the end
			// easing:'easeOutQuart', //use this easing equation for a funny effect
			jump: true //click on the images to scroll to them
		});
		
		$("a.zoom").fancybox();

		$("a.zoom1").fancybox({
			'overlayOpacity'	:	0.7,
			'overlayColor'		:	'#FFF'
		});

		$("a.zoom2").fancybox({
			'zoomSpeedIn'		:	500,
			'zoomSpeedOut'		:	500
		});
	
	
})
$(document).bind('keypress', function(e) {
	var code = (e.keyCode ? e.keyCode : e.wich);
	//39 -> 37 <-  38 up  
	if (code == 39) {
		$('#RightArrow').trigger('click');
	}
	if (code == 37) {
		$('#LeftArrow').trigger('click');
	}
	if (code == 38) {
		$('#InfoBox').stop(true).fadeIn();
	}
	if (code == 40) {
		$('#InfoBox').stop(true).fadeOut();
	}

});
})(jQuery);