// Отображение увеличенной фотографии

var divPhoto = 'BigPhoto';

// Открывает увеличенную фотографию
function openBigPhoto(path_photo, w, h) {
	// Закрываем предыдущие фото если они открыты.
	closeBigPhoto();
	
	// Открываем новое
	$('<div id="'+divPhoto+'" onClick="closeBigPhoto()"><img width="' + w + 'px" height="' + h + 'px" src="'+path_photo+'" alt="Close" title="Close" /></div>').appendTo("#Body").center();
}

// Закрывает увеличенную фотографию
function closeBigPhoto() {
	//alert('!close!');
	$('#'+divPhoto).remove();
}

// Размешает объект по центру экрана
jQuery.fn.center = function() 
{
	var w = $(window);
	this.css("position","absolute");
	this.css("top",(w.height()-this.height())/2+w.scrollTop() + "px");
	this.css("left",(w.width()-this.width())/2+w.scrollLeft() + "px");
	return this;
}