$(document).ready(function(){
	/* скрипт для увеличения изображений при клике */
	$("a.image-magnifique").click(function(event){
		event.preventDefault();
		var big_img = $(this).attr("href");
		var img = new Image();
		img.onload = function() {

			// var left = (window.screen.width - img.width)/2;
			// var top = (window.screen.height - img.height)/2;
			var width = img.width;
			var height = img.height;
			var alt = "";

			var scroll = 'no';
			var top=0, left=0;
			if(width > screen.width-10 || height > screen.height-28)
				scroll = 'yes';
			if(height < screen.height-28)
				top = Math.floor((screen.height - height)/2-14);
			if(width < screen.width-10)
				left = Math.floor((screen.width - width)/2);
			width = Math.min(width, screen.width-10);	
			height = Math.min(height, screen.height-28);	
			window.open('/bitrix/tools/imagepg.php?alt='+alt+'&img='+big_img,'','scrollbars='+scroll+',resizable=yes, width='+width+',height='+height+',left='+left+',top='+top);
			// window.open(big_img, 'magnifique', 'width='+img.width+', height='+img.height+', top='+top+', left='+left+', scrollbars=0, menubar=0');
		}
		img.src = big_img;
	});

});