

function swap(id)
{
	var selection = document.getElementById(id);
	thelast.style.display = "none";
	selection.style.display = "block";
	thelast = selection;
}

