		function show_photo(n){

        	$.ajax({
					type: "POST",
					url: "/show_photo.php",
			   		data: "id=" + n,
			   		success: function(page_cont)
					{

				            $("div.right_content > img").remove();
				    		$("div.right_content").append(page_cont);

			    	},
		    		error: function()
					{
				   		alert('Сервер не отвечает. Попробуйте еще раз.');
				   	}
			});

        };
