// JavaScript Document
$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a.single_image").fancybox(
	{
	 'titlePosition'  : 'inside'
	});
	
	$("a[rel=galerie1]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'inside',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<p style="text-align:left">Bild ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</p>';
		}
	});
		
	
	$("a[rel=galerie2]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Bild ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});

$("a.iframeBox").fancybox({
				'width'				: '95%',
				'height'			: '95%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});	
	
$("a.ifBox").fancybox({
				
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe',
				'width'				: 650,
				'height'			: 500
			});  



});