$(document).ready(function() {
	$("a.gr").fancybox({
		'transitionIn'		:	'fade',
		'transitionOut'		:	'fade',
		'easingIn'      	: 'easeOutBack',
		'titlePosition' 	: 'inside',
		'overlayShow'		:	true,
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.7,
		'speedIn'			:	300, 
		'speedOut'			:	200, 
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' 
			+ (title.length ? ' &nbsp; ' + title : '')  
			+'<span class="right"> image ' 
			+(currentIndex + 1) 
			+ ' / ' 
			+ currentArray.length 
			+ '</span></span>';
		}
	});
			
	$("a#single").fancybox({
		'transitionIn'		:	'fade',
		'transitionOut'		:	'fade',
		'easingIn'      	: 'easeOutBack',
		'titlePosition' 	: 'inside',
		'overlayShow'		:	true,
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.7,
		'speedIn'			:	300, 
		'speedOut'			:	200, 
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' 
			+ (title.length ? ' &nbsp; ' + title : '')  
			+'<span class="right"> image ' 
			+(currentIndex + 1) 
			+ ' / ' 
			+ currentArray.length 
			+ '</span></span>';
		}
	});
	
	$(".trigger").tooltip({ effect: 'slide'});
	
});
