$(function() {
	$(".qa .question").bind("click", function(event) {
		$(this).nextAll(".answer").toggle("slow");
	});
});