// JavaScript Document

	jQuery(function() {
									
		jQuery("a#single_image").fancybox({
			'titleShow'     : false,
			
					'width'				: 815,
		'height'			: 510,
        'autoScale'     	: false,
        'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'type'				: 'iframe',
		'scrolling'			: 'no'

		});
});
	
	
	
	jQuery(function() {
									
	jQuery("a[rel=fancybox_grundrisse]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Grundriss ' +  (currentIndex + 1) + ' / ' + currentArray.length + ': ' + title + '</span>';
		}
	});

	jQuery("a[rel=fancybox_images]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Bild ' +  (currentIndex + 1) + ' / ' + currentArray.length + ': ' + title + '</span>';
		}
	});

});
	
