$(document).ready(function(){
	
	$(".pergunta").click(function () {
		$(this).next(".resposta").show("fast");
		return false;
	});
	
	$(".openall").click(function () {
		$(".resposta").show("fast");
		return false;
	});
	
});

