	$(document).ready( function() {
		$("#box").click(function () 
		{
			display()	
		});	
		$("#close").click(function () 
		{
			display()	
		});
	});
	
	function display()
	{
		var type = $("#infopane").css("display");
		(type=="block") ? $("#infopane").fadeOut("slow") : $("#infopane").fadeIn("slow");	
	}

			/*
			//$("#infopane").load("copytest.html");
			if(type=="none")
			{
				$.ajax({
					url: "copytest.html",
					async: false,
					cache: false,
					success: function(html){
						$("#infopane").html(html);
						display(false);
					}
					
				});
			}else{
				display(true)	
			}
			
		});
		
		function display(hide)
		{
			(hide) ? $("#infopane").fadeOut("slow") : $("#infopane").fadeIn("slow");	
		}*/

