// JavaScript Document
function switchanswer(answerobj) {
	if (answerobj.style.display == ""){
		answerobj.style.display = "none";
	}else{
		answerobj.style.display = "";
	}
}
