$(document).ready(function(){
	$("a.showAnswer").toggle(
		function() {
			this.innerHTML = "Hide Answer";
			$(this).next().slideDown("slow");
		},
		function() { 
			this.innerHTML = "Show Answer";
			$(this).next().slideUp("slow"); 			
		}
	);
});