var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) At number 2, what is meant by ‘the tenancy agreement’?";
choices[0] = new Array();
choices[0][0] = "an agreement between tenants";
choices[0][1] = "rules you agree to follow as a council tenant";
choices[0][2] = "the items you agree to put in your house";
answers[0] = choices[0][1];

questions[1] = "2) At number 5, what is meant by ‘you’ve breached the tenancy’?";
choices[1] = new Array();
choices[1][0] = "it's time to move out of your home";
choices[1][1] = "you’ve broken the rules";
choices[1][2] = "you have obeyed the rules";
choices[1][3] = "the end of your contract is up";
answers[1] = choices[1][1];

questions[2] = "3) At number 5, what is meant by ‘ultimately’?";
choices[2] = new Array();
choices[2][0] = "a decision by the court";
choices[2][1] = "a decision by the council";
choices[2][2] = "eventually, in the end";
choices[2][3] = "at the start";
answers[2] = choices[2][2];

questions[3] = "4) At number 5, what is meant by ‘resolve your financial difficulties’?";
choices[3] = new Array();
choices[3][0] = "lend money to friends";
choices[3][1] = "to be given a new credit card";
choices[3][2] = "try to solve any money problems";
choices[3][3] = "to be taken to court for money owed ";
answers[3] = choices[3][2];

questions[4] = "5) At number 7, what is meant by ‘perpetrator of anti social behaviour’?";
choices[4] = new Array();
choices[4][0] = "the victim of noisy neighbours ";
choices[4][1] = "the council who solve the problems";
choices[4][2] = "someone who creates problems for other people, like noise or fighting";
choices[4][3] = "someone who stops tenants misbehaving";
answers[4] = choices[4][2];

questions[5] = "6) At number 8, what is meant by ‘if you play by the rules’?";
choices[5] = new Array();
choices[5][0] = "if you follow the rules";
choices[5][1] = "if you only follow the ones you want to";
choices[5][2] = "if you ignore the rules";
choices[5][3] = "if you obey the rules for a short time";
answers[5] = choices[5][0];

questions[6] = "7) At number 10, what is meant by ‘you can resolve it locally’?";
choices[6] = new Array();
choices[6][0] = "you can solve problems yourself without official help";
choices[6][1] = "you can resolve it through contacting your local police force";
choices[6][2] = "you can resolve problems through your council";
choices[6][3] = "problems can be resolved through other agencies ";
answers[6] = choices[6][0];

questions[7] = "8) At number 11, what is meant by ‘a mobile patrol unit’?";
choices[7] = new Array();
choices[7][0] = "using a mobile phone to contact people";
choices[7][1] = "local police";
choices[7][2] = "council employees who walk around at night";
choices[7][3] = "official people in a car who drive around";
answers[7] = choices[7][3];

questions[8] = "9) At number 12, what is meant by ‘take out an injunction’?";
choices[8] = new Array();
choices[8][0] = "ask the police to warn to noisy neighbours";
choices[8][1] = "ask the council warn to noisy neighbours";
choices[8][2] = "get a court order stopping someone from doing something";
answers[8] = choices[8][2];

questions[9] = "10) At number 12, what is meant by ‘in breach of the injunction’?";
choices[9] = new Array();
choices[9][0] = "someone who changes a court order";
choices[9][1] = "someone who agrees to a court order";
choices[9][2] = "someone who breaks a court order";
answers[9] = choices[9][2];


// response for getting 100%
response[0] = "Excellent, 100% correct!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done. Good score. Try again to do better?";
// response for getting over 50%
response[3] = "You got more than half of the questions right. Can you do better?";
// response for getting 40% or more
response[4] = "You got some questions right, you can do better!";
// response for getting 20% or more
response[5] = "You didn't do too well, why not try again!?";
// response for getting 10% or more
response[6] = "Not good!  Try again to improve!";
// response for getting 9% or less
response[7] = "Less than 10% correct.";
