$(function() {
  $(".correct").hover(
      function () {
		$(this).find(".importantQuestion").css('display','inline');
      }, 
      function () {
		$(this).find(".importantQuestion").css('display','none');
      }
    );
    
});


