// Fancybox lightbox plugin
$(function() {
	$("a.fancybox").fancybox({
		'titlePosition' : 'inside',
		'titleFormat'	: formatTitle,		
		'transitionIn'	: 'fade',
		'transitionOut'	: 'none',
		'speedIn'		: 600, 
		'overlayShow'	: true	
	});

	function formatTitle(title, currentArray, currentIndex, currentOpts) {
    	return '' + (title && title.length ? '' + title + '' : '' ) + '<br />' + '<em>' + '' + (currentIndex + 1) + ' of ' + currentArray.length + '</em>' + '';
	}
});

$(function() {
	$(".gallery-icon a").fancybox({
		'titlePosition' : 'inside',
		'titleFormat'	: formatTitle,		
		'transitionIn'	: 'fade',
		'transitionOut'	: 'none',
		'speedIn'		: 600, 
		'overlayShow'	: true	
	});

	function formatTitle(title, currentArray, currentIndex, currentOpts) {
    	return '' + (title && title.length ? '' + title + '' : '' ) + '<br />' + '<em>' + '' + (currentIndex + 1) + ' of ' + currentArray.length + '</em>' + '';
	}
});
