// Jquery with no conflict
jQuery(document).ready(function($) {
	
// fancybox ------------------------------------------------------ //
	
$("a.fancybox").fancybox({
	'transitionIn'	:	'fade',
	'transitionOut'	:	'fade',
	'autoScale'		: 	true,
	'centerOnScroll' 	: true,
	'speedIn'		:	600, 
	'speedOut'		:	200, 
	'overlayShow'	:	true,
	'titlePosition' 	: 'over',
	'overlayColor' 	: '#000000',
	'overlayOpacity': 1,	
	'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
	    return '<span id="fancybox-title-over">Foto ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
	}
	
});

//close			
});



