jQuery(document).ready(function() {


	$(".thumbnails a").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'speedIn'	: 400,
		'speedOut' : 400,
		'easingOut'     : 'easeInBack',	
		'titlePosition' : 'inside',
		'titleShow' : true,
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' - ' + title +'</span>';	}
			
	});
	
	
});


