$(document).ready(function() {
	
	function showInfo() {
		setTimeout("$('div.photoinfo').fadeIn()", "1000");
	}

	function hideInfo() {
		$('div.photoinfo').fadeOut();
	}
	$('#gallery').cycle({
		fx:'fade',
		timeout: 6000,
		before: hideInfo,
		after: showInfo
	});
	
	
	$(function() {
		$('a.lightbox').lightBox({fixedNavigation:true});
	});

});