function showAnswer(divNum){
		//hideAnswers();
		var thisDiv = document.getElementById("spotlightAnswer"+divNum).style;
		
		if(thisDiv.display == "none"){
			thisDiv.display = "block";
		}else if(thisDiv.display == "block"){
			thisDiv.display = "none";
			
		}
		
	}
	
function hideAnswers(){
	for(i=1; i<10; i++){
		document.getElementById("spotlightAnswer"+i).style.display = "none";
	}
}

function showHomeList(){
	document.getElementById("list_wrapper").style.display = "none";
	document.getElementById("list_wrapper_hide").style.display = "block";
}
