thisid = "";

function selectthis(id){
	if (thisid != ""){
		textid = document.getElementById(thisid);
		textid.className = "text";
		thisid = "";
	}
	if (id != ""){
		textid = document.getElementById(id);
		textid.className = "textblack";
		thisid = id;
	}
}
