function overlay()
{
	document.getElementById("theOverlay").style.display = "block";
	document.getElementById("theOverlay").onclick = restore;	
	$("#theOverlay").fadeTo(0, 0.1);
	$("#theOverlay").fadeTo(500, 1);
}

function hide()
{
	document.getElementById("theOverlay").style.display = "none";
}

function restore() 
{
	$("#theOverlay").fadeTo(200, 0, hide);
}
	

	  
	
