var quiz = new MatchingQuiz();

// Scores, must be listed highest to lowest. User gets this rank
// if their percentage score is equal to or better than the
// listed score.
quiz.addRanking(100, "You scored an A");
quiz.addRanking(70, "You scored a B");
quiz.addRanking(50, "You scored a C");
quiz.addRanking(40, "You scored a D");
quiz.addRanking(0, "You scored an F");

quiz.addQuestion(
"Chapter 7",
"Discharge of debt",
"<a href=\"/courses.html/ss-content/ss-drilldown-1/chapter-thirteen.html/\">Short Sales A-Z Chapter 13 - Bankruptcy</a>"
);

quiz.addQuestion(
"Line 603 must be \"Zero\" in",
"short payoff HUD-1",
"<a href=\"/courses.html/ss-content/ss-drilldown-1/chapter-twenty-three.html/\">Short Sales A-Z Chapter 23 - HUD-1</a>"
);

quiz.addQuestion(
"Short Sale",
"Short Payoff with debt forgiveness",
"<a href=\"/courses.html/ss-content/ss-drilldown-1/chapter-ten.html/\">Short Sales A-Z Chapter 10 - Short Payoffs</a>"
);

quiz.addQuestion(
"Deficiency",
"Foreclosure sale payoff short fall",
"<a href=\"/courses.html/ss-content/ss-drilldown-1/chapter-ten.html/\">Short Sales A-Z Chapter 10 - Short Payoffs</a>"
);

quiz.addQuestion(
"TSG",
"Trustee Sale Guarantee",
"<a href=\"/courses.html/ts-content/\">Trustee Sales A-Z Chapter 2 - Risk Mitigation</a>"
);

quiz.addQuestion(
"HUD 1",
"RESPA compliant settlement statement",
"<a href=\"/courses.html/ss-content/ss-drilldown-1/chapter-seventeen.html/\">Short Sales A-Z Chapter 17 - HUD-1</a>"
);

quiz.addQuestion(
"Sold Out Junior",
"Unpaid debt no longer secured by real estate",
"<a href=\"/courses.html/ss-content/ss-drilldown-1/chapter-ten.html/\">Short Sales A-Z Chapter 10 - Short Payoffs</a>"
);

quiz.addQuestion(
"Receipt of funds",
"What a successful bidder gets",
"<a href=\"/courses.html/ts-content/\">Trustee Sales A-Z Chapter 5 - Trustee Sales Protocol</a>"
);

quiz.addQuestion(
"Trustee's Sale",
"Form of non-judicial foreclosure",
"<a href=\"/courses.html/ss-content/ss-drilldown-1/chapter-seven.html/\">Short Sales A-Z Chapter 7 - Trust Deeds</a>, <a href=\"/courses.html/ts-content/\">Trustee Sales A-Z Chapter 1 - Introduction</a>"
);

quiz.addQuestion(
"Call The Loan",
"Subject to existing financing acquisition risk",
"<a href=\"/courses.html/ss-content/ss-drilldown-1/chapter-twenty-five.html/\">Short Sales A-Z Chapter 25 - Subject To</a>"
);


quiz.display();

