You do not need to pass an identifier. Just go from the div by clicking on the answer you want. thisrefers to the source of the event, which in this case will be a div with the class "question".
$("div.question").click(function() {
$(this).next().fadeIn("slow");
});
Also, if your markup is correct, this can be simplified:
$("div > div.answer").hide();
simply
$("div.answer").hide();
but I would do it with CSS:
div.answer { display: none; }
Javascript . jQuery API- API AJAX Google, , , - . , , . CSS, .
, jQuery 1.4.1.