$(document).ready(function() {
		//fancybox all links to a jpeg file
    if($('a[href$=jpg]').length) {
				$('a[href$=jpg]').fancybox({
						'transitionIn'		: 'none',
						'transitionOut'		: 'none',
						'titlePosition' 	: 'outside',
						'showCloseButton': false,
						'autoScale':true,
      			'resizeHeight':false,
						'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
								return '<span id="fancybox-title-outside">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
						}
				});
		}
		
		//open fancybox if location.hash contains open
		if(location.hash.indexOf("ouvert")>-1 || location.hash.indexOf("open")>-1) {
				$('a[href$=jpg]').first().trigger('click');
		}
});
