// starting the script on page load
$(document).ready(function(){
	//added the show / hide biznatch
    $('.answer').css("display","none");
	$('h3.question').hover(function() {
			$(this).css("cursor" , "pointer");
			//$(this).css("color" , "#FFFFFF");
		});
	$("h3.question").click(function () {
	  $(this).next(".answer").slideToggle("fast");
	  //$(this).next(".answer").slideToggle("fast").siblings('.answer').slideUp('fast');//if you want the others to close too
    });
	
});
