$(document).ready(function() {
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
		return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/common/js/fancybox/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Изображение ' + (currentIndex + 1) + ' из ' + currentArray.length + '</div>';
	}
	
	function formatTitle1(title, currentArray, currentIndex, currentOpts) {
		return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/common/js/fancybox/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + '</div>';
	}
	
	
	$("a.fancybox").fancybox({
		'showCloseButton'	: false,
		'titlePosition' 	: 'inside',
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.4,
		'titleFormat'			: formatTitle1
	});

	$("a.fancybox_group").fancybox({
		'showCloseButton'	: false,
		'titlePosition' 	: 'inside',
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.4,
		'titleFormat'			: formatTitle
	});
	
});
