(function($) {
  $.fn.highlightAnswer = function() {
    return this.each(function() {
      $(this).find(":radio").click(function(event) {
        if (jQuery(this).hasClass("answer")) {
          jQuery(this).closest("li").addClass("correct");
        } else {
          jQuery(this).closest("li").addClass("incorrect");
          jQuery(this).closest("ul").find(".answer").closest("li").addClass("correct");
        }
        
        jQuery(this).closest("ul").find("li:not(.correct, .incorrect)").addClass("not-chosen");
        
        //jQuery(this).closest("ul").find(":radio").attr("disabled", true);
        jQuery(this).closest("ul").siblings(".explanation").slideToggle();
      }).change();
    });
  }
})(jQuery);