$(document).ready(function() {
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	400, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'opacity'		:	true,
		'padding'		:	0,
		'hideOnOverlayClick'	:	true,
		'cyclic'		:	true,
		'centerOnScroll'		:	true,
		'overlayOpacity'		:	0.8,
		'changeSpeed'	:	150,
		'overlayColor'	:	'#000041',
	});
	
});

function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/data/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
}

$(document).ready(function() {

	$(".tip7").fancybox({
		'showCloseButton'	: false,
		'titlePosition' 	: 'inside',
		'titleFormat'		: formatTitle
	});

});
