	  // When the document loads do everything inside here ...



$(document).ready(function(){


$("h3.question").click(function(){
	//alert ("found a question " + this.name + " title:"  + this.title);
	$(".answer").slideUp(500);
		$("#answer"+this.title).slideDown(500);
		//id="answer1" class="question"
});
	});
	
	  

