$(document).ready(function() {
	
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
	    return '<div id="tip7-title">' + (title && title.length ? '<strong>' + title + '</strong>' : '' ) + 'Image ' + (currentIndex + 1) + ' sur ' + currentArray.length + '</div>';
	}
	
	$("a.fancybox_gallery").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	800, 
		'speedOut'		:	400, 
		'overlayColor'	:	'#888888',
		'titlePosition' : 	'inside',
		'titleFormat'	: 	formatTitle
	});	
});
