

$(document).ready(function(){
	$(".question").click(function () {
	  $(this).next("li.answer").slideToggle("slow");
	  });
});