
	$(document).ready( function() {
		
	});
	
	var largeImageWidth = 660;
	
	function showPopUp(img_src){
		
		// Биндим клавиши
		
		$(document).keyup(function(event){
			
			// Esc для закрытия галлереи
			
		    if (event.keyCode == 27) {
		        hidePopUp();
		    }
			
		});
		
		// Скрываем flash-человека
		
		$('#man-click-img').fadeOut();
		
		popupWidth = $('#popup').css('width').replace('px','');
		documentWidth = document.body.clientWidth;
		
		left_width = Math.round( ( documentWidth - popupWidth ) / 2 );
		
		$('#popup').css({
			left: left_width
		});
		
		$('#popup').fadeIn("slow", function() {
		
			// Биндим клики
			/*
			$(div).not("#popup").click(function(){
				hidePopUp();
			});
			*/
		});
		
		
		// Resizing 
		image_src = '/upload/images/thumb.php?w='+largeImageWidth+'&img=' + img_src;
		
		$('#largePic').attr({
			src: image_src
		});
	}
	
	function hidePopUp() {
		$('#popup').fadeOut();
		$('#man-click-img').fadeIn();
		
		// Анбиндим клавиши
		
		$(document).keyup(function(event){
		});
		
		// Анбиндим клики
			
		//$().not("#popup").click();
	}
	
	function showLarge(img_src) {
		// Resizing 
		image_src = '/upload/images/thumb.php?w='+largeImageWidth+'&img=' + img_src;
		
		$('#largePic').attr({
			src: image_src
		});
	}

