google.load("jquery", "1.4.0");

//run when page is loaded
google.setOnLoadCallback(function() {

  $("li.reviewFlashcard div.question").click(function() {
      if($(this).next().is(':hidden')) {
        $(this).next().fadeIn("slow");
      } else {
        $(this).next().fadeOut("slow");
      }
  });  


});
