$(document).ready(function() {
    $('a[rel="gallery"]').fancybox({
		'overlayColor'		: '#ddd',
		'overlayOpacity'	: 0.8,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'inside',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over" style="background:white;color:black">Image #' + (currentIndex + 1) + (title.length ? ': <strong>' + title + '</strong>' : '') + '</span>';
		}
	});
});
