$(document).ready(function() {

	$("a[rel=lightbox]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'inside',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-inside">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' &nbsp; &nbsp; &nbsp; &nbsp; ' + title + '</span>';
		}
	});
	
});
