// JavaScript Document
		$(document).ready(function() {
			
	
			
			$("a[rel=example_group], a[rel=zeitung], a[rel=flyer], a[rel=3D]").fancybox({
				'padding'			: 0,
				'cyclic'			: true,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

			
			$("a.16_9").fancybox({
				'overlayColor'		: '#000',
				'width'				: '600px',
				'height'			: '375px',
				'padding'			: 0,
				'autoScale'			: false
			});
			
			$("a.4_3").fancybox({
				'overlayColor'		: '#000',
				'width'				: '469px',
				'height'			: '412px',
				'padding'			: 0,
				'autoScale'			: false
			});

		});
