$(document).ready(function() {
		
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over"><strong>' + title + '</strong><br /> Zdjecie ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>' ;
		}
		
		$("a[href$=.jpg],a[href$=.JPG]").fancybox({
					'transitionIn' 	   : 'none',
					'transitionOut'	   : 'none',
					'cyclic'		   : false,
					'titlePosition'    : 'over',

					'titleFormat'      : formatTitle
		});
		
		
		
		
		
		$("a[rel=video]").fancybox({
					'type'				: 'iframe'
		});
		
		$(".box-news .galeria").css('display', 'none');
		
		$("#wirtualna-wycieczka").fancybox({
			'width'				: 800,
			'height'			: 600
		});
});

