		$(document).ready(function() {

			$("a.fancybox").fancybox({
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'titlePosition'		: 'over',
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.9,
				'titleFormat'		:	function(title, currentArray, currentIndex, currentOpts) {
											return '<span id=\"fancybox-title-over\">' + (currentIndex + 1 -4) + ' / ' + (currentArray.length-4) + (title.length ? ' &nbsp; ' + title : '') + '</span>';
										}
			});
			
			$(".frame").fancybox({
				'titleShow'			: false,								 
				'width'				: '80%',
				'height'			: '80%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});					

			$(".popup").fancybox({
				'titleShow'		: false
			});
		});
