$(document).ready(function(){
	$('a[rel=fancy]').fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'			: 500,
		'speedOut'			: 300,
		'titlePosition' 	: 'inside',
		'titleShow'			: false,
		'overlayOpacity'  : 0.6,
		'overlayColor'    : '#000000',
		'titleFormat'     : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});
});
