/** Startup
*/
$(document).ready(function() {
	/** Fancybox */
	var ireg = /\.(png|gif|jpe?g)$/i
	$('a:has(img)').each(function() {
		if(ireg.test($(this).attr('href'))) {
			$(this).fancybox({'titlePosition' : 'over'});
			$(this).children('img').addClass('zoom');
		}
	});
	$(".images a:has(img)").attr('rel','images');
	$("a[rel=images]").fancybox({
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'titlePosition' : 'over',
		'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + title + ' <span style="color:#888">&nbsp;слайд ' + (currentIndex + 1) + ' из ' + currentArray.length + '</span></span>';
		}
	});
	$(".framebox").fancybox({
		'type'				: 'iframe',
		'centerOnScroll'	: 'true',
		'autoDimensions':'false',
		'autoScale':'false',
		'width'				: 450,
		'height'			: 390
	 });
	/* Fancybox **/
});
