$(document).ready(function() {

	$(".fancybox-iframe").fancybox({
		'width'				: 860,
		'height' 			: 550,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayOpacity'	: 1,
		'overlayColor'		: '#000'
	});
	
	$("a.fancybox").attr('rel', 'gallery').fancybox();
	
	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (currentIndex + 1) + '/' + currentArray.length + ' ' + (title.length ? '&nbsp;' + title : '') + '</span>';
		}
	});

});
