$(document).ready(function() {
			/*
			*   Examples - images
			*/
			
			$(".reg_paketi_more").fancybox({
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe',
				'autoDimensions'	: true,
				'titleShow'			: false
			});
			
			$(".gmap_link").fancybox({
				'width'				: 600,
				'height'			: 500,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe',
				'autoDimensions'	: false,
				'titlePosition'		: 'over'
			});
			
			$(".img_gallery").fancybox({
				'autoScale'			: true,
				'cyclic'			: true,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'image',
				'autoDimensions'	: true,
				'titleShow'			: true,
				'titlePosition'		: 'over',
				'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Slika ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
				}
			});
			
			});
