		$(document).ready(function() {

			$("a[rel=fancyfoto]").fancybox({
				'padding'			: 0,
				'overlayColor'		: '#000',
				'centerOnScroll'	: 'true',	
				'cyclic'			: 'true',	
				'transitionIn'		: 'none',
				'transitionOut'	: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

			$("a[rel=fancyfotogalerie]").fancybox({
				'padding'			: 0,
				'overlayColor'		: '#000',
				'centerOnScroll'	: 'true',	
				'cyclic'			: 'true',	
				'transitionIn'		: 'none',
				'transitionOut'	: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">[ ' + (currentIndex + 1) + ' / ' + currentArray.length + ' ]' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

			$("a.fancymapa").fancybox({
				'width'			: '75%',
				'height'			: '85%',
				'overlayColor'		: '#000',
				'centerOnScroll'	: 'true',	
        			'autoScale'     	: false,
        			'transitionIn'		: 'none',
				'transitionOut'	: 'none',
				'type'			: 'iframe'
			});


		});

