$(document).ready(function() {
			
	$(".gallery-image").fancybox({
		'transitionIn'			: 'fade',
		'transitionOut'			: 'fade',
		'cyclic'				: 'true',
		'padding'				: 10,
		'overlayOpacity' : .8,
		'titlePosition' 		: 'inside',
		'titleFormat'			: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-inside">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + ' - ' + (title.length ? '' + title : '') + '</span>';
			}
	});
	
	
	$(".single-image").fancybox({
	    'titleShow'     : false,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'padding'		: 10,
		'overlayOpacity' : .8
	});
	
	
	$('.single-video').fancybox({ 
		'titleShow'     : false,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'padding': 10, 
		'width': 930, 
		'height': 523, 
		'type': 'iframe', 
		'overlayOpacity' : .8
	});
	
}); //End of Ready


