$(document).ready(function() {
	$("a.info").fancybox({
		'titleShow'		  : false,
		'overlayOpacity'  : '0.5',
		'overlayColor'    : '#000',
		'autoDimensions'  : false,
		'autoScale'       : false
	});
	
	$("a.gmap").fancybox({
		'overlayOpacity'    : '0.5',
		'width'				: '95%',
		'height'			: '95%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});	
	
	$("a[rel=group]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'overlayOpacity'    : '0.5',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});	
	
});

