jQuery(document).ready(function() {


	$("a#example4").fancybox({
		'titleShow'     : true,
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack'
		
	});
		
	$("a#example2").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack'
	});
	
	$("a#example3").fancybox({
	    'titleShow'     : false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none'
	});
	
	
	$("a#example5").fancybox({
		'titlePosition'  : 'inside'
	});
	
	$("a#example6").fancybox({
		'titlePosition'  : 'over'
	});


	$("a[rel=photoshow_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">' + title +'  - ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}		
	});


	$("a.photoshow").fancybox();
	
	$("a.showdocument").fancybox({
		'width'				: '90%',
		'height'			: '90%',
        'autoScale'     	: false,
        'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});

	$("a.showplayer").fancybox({
		'width'             : 650,
		'height'            : 485,
		'margin'            : 5,
		'padding'           : 5,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});


	$("a.overlay-flash").fancybox({  
	'padding'                : 0,  
	'zoomOpacity'            : true,  
	'zoomSpeedIn'            : 500,  
	'zoomSpeedOut'            : 500,  
	'overlayOpacity'        : 0.75,  
	'frameWidth'            : 600,  
	'frameHeight'            : 440,  
	'hideOnContentClick'    : false 
	 });  


});

