var quizzer;

$().ready(function () {
  quizzer = new Quizzer(QUIZ_INKBLOTS,
    '_get_inkblots.php', function(answers) {
      $('#score').text(this.getScore() +'/'+ this.getLength());
      this.currentPage.hide(function() {
        $('#page-progress').fadeIn('slow');
      });
    },
    document.body
  );
});

