function showAnswer(id) {
	
	// Close any open FAQs
	for(i=0; i < totalFAQs; i++) {
		hideAnswer(i);
	}
	
	// Open up the answer for the FAQ
	document.getElementById('Q'+id+'-Answer').style.display = 'block';
	document.getElementById('Q'+id+'-QText').href = 'javascript:hideAnswer(\''+id+'\')';
}
function hideAnswer(id) {
	// Close the FAQ
	document.getElementById('Q'+id+'-Answer').style.display = 'none';
	document.getElementById('Q'+id+'-QText').href = 'javascript:showAnswer(\''+id+'\')';
}