$(document).ready(function() {
			/*
			*   Examples - images
			*/
			
			$(".gallery_img").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>';
				}
			});

			
			});
