$(document).ready(function() { /* This is basic - uses default settings */
	$("a[rel=lightbox-group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">' + this.title 
		    		+ '<br>'
		    		+ '<span class="small">Image ' 
		    		+  (currentIndex + 1) 
		    		+ ' / ' + currentArray.length + '</span></span>';		
	}
	});

	$("a[rel=lightbox-menu-group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'inside'
	});	
	
	$(".iframe").fancybox({
		'width'				: '75%',
		'height'			: '90%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

	
	$(".request.iframe").fancybox({
		'width'				: '55%',
		'height'			: '50%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
});