jQuery(document).ready(function() {
	jQuery(".popb").fancybox();
	
	jQuery(".popa").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>';
		}
	});

	$(".popc").fancybox({
		'width'				: 1000,
		'height'			: 800,
		'scrolling'			: 'auto',
		'autoScale'			: true,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});
		
	$(".popd").fancybox({

		'height'			: 550,
		'scrolling'			: 'auto',
		'autoScale'			: true,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});

});
