$(document).ready(function() {

			$(".galerija").fancybox({
				'transitionIn'	: 'fade',
				'transitionOut'	: 'fade',
				'titlePosition' 	: 'inside',
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.7,
				'centerOnScroll'	: true,
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-inside"><span style="color:#aaa">Slika ' + (currentIndex + 1) + ' od ' + currentArray.length + '&nbsp;:</span>' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			

			$(".zunanji_link").fancybox({
				'width'				: '90%',
				'height'			: '90%',
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.7,
				'type'				: 'iframe'
			});
			
			
			$(".videoyoutube").click(function() {
			$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.7,
			'title'			: this.title,
			'width'			: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
	    	'wmode'			: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});

	return false;
});
			
			
		});
