// Fancybox code

$(document).ready(
	function() 
	{
		$("a.example_group").fancybox(
			{
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'outside',
				'autoScale'			: true,
				'titleShow'			: true, 
				'overlayShow'		: false,
				'enableEscapeButton': false,
				'showCloseButton'	: false,
				'centerOnScroll'	: false,
				'cyclic'			: true,
				'type'				: 'image',
				'padding'			: 1,
				'index'				: 0,
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) 
										{
											return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
										}
			}
		);
	}
);

function clickFirstPicture()
{
	if($("a#pic0.example_group") != null)
	{
		$("a#pic0.example_group").click();
	}
}


