$(document).ready(function() {	$("a.group").fancybox({		'width' : 760,
		'height' : 470,
		'overlayOpacity' : 0.7,
		'overlayColor' : '#000',
		'centerOnScroll': true,
		'autoScale' : true
	});

	$("a.group2").fancybox({		'titlePosition'  : 'over',
		'overlayOpacity' : 0.7,
		'overlayColor' : '#000',
		'centerOnScroll': true,
		'autoScale' : true,
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over"><i>Ôîòî ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</i> ' + title + '</span>';}
	});

	$("#tmp A").fancybox({		'titlePosition'		: 'inside',
		'transitionIn'		: 'none',
		'autoDimensions'	: true,
		'transitionOut'		: 'none',
		'overlayOpacity'	: 0.7,
		'overlayColor' 		: '#000',
		'centerOnScroll'	: true,
		'autoScale' 		: true
	});
});
