var last_link = null;

function activate(theid){
	if ( last_link != null) last_link.className = "hide";
	var the_selection = document.getElementById(theid);
	the_selection.className = "show";
	last_link = the_selection;
		
}
