$(document).ready(
  function()
  {
    $('.domanda').click(
      function()
      {
        $(this).next(".risposta").fadeIn(500);
      }
    )
  }
)
