jQuery(document).ready(function() {
	
	$(".img").fancybox({
		'titlePosition'  : 'over'
	});

	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'over',
		overlayShow			: true,
		overlayOpacity		: 0.4,
		overlayColor		: '#000',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});
	
	$("a[rel=gallery2]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'over',
		overlayShow			: true,
		overlayOpacity		: 0.4,
		overlayColor		: '#000',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});	
});