/////////////////////////////////////////////////////////////////////
// Individual Q&A show/hide items
/////////////////////////////////////////////////////////////////////
function showAnswer(id) {
	// check the class of the QA item
	answerDiv = 'answer_' + id;
	divClass = document.getElementById(answerDiv).className;
	
	if(divClass == "show") {
		document.getElementById(answerDiv).className = 'hide';	
	} else {
		document.getElementById(answerDiv).className = 'show';
	}


}