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

questions[0] = "1) At number 8, why did Wendy move to Leeds?";
choices[0] = new Array();
choices[0][0] = "to find her new home";
choices[0][1] = "to start teaching";
choices[0][2] = "to start university";
choices[0][3] = "to meet new friends";
answers[0] = choices[0][2];

questions[1] = "2) At number 10, why did the landlord ask Wendy to leave her property?";
choices[1] = new Array();
choices[1][0] = "he wanted to move into the home with his family";
choices[1][1] = "he wanted people to move in who would pay more rent";
choices[1][2] = "he wanted to re-decorate the house";
choices[1][3] = "he wanted to put the house up for sale";
answers[1] = choices[1][1];

questions[2] = "3) At number 10, what is meant by ‘repossessed’?";
choices[2] = new Array();
choices[2][0] = "your home is taken away from you";
choices[2][1] = "new tenants move into the building";
choices[2][2] = "where you buy a new house";
choices[2][3] = "your house goes up for sale";
answers[2] = choices[2][0];

questions[3] = "4) At number 32, what do some people find it difficult to live together?";
choices[3] = new Array();
choices[3][0] = "some people only like to live with the same gender";
choices[3][1] = "some people find it difficult to live with people who snore";
choices[3][2] = "some people like to live with people who have the same job";
choices[3][3] = "some people like to be very busy and other people don’t";
answers[3] = choices[3][3];

questions[4] = "5) At number 40, why did the landlord ask Wendy to leave the house?";
choices[4] = new Array();
choices[4][0] = "because he wanted to sell it";
choices[4][1] = "because his home was going to be repossessed ";
choices[4][2] = "his girlfriend wanted to move in";
choices[4][3] = "because he had new tenants who would pay more rent ";
answers[4] = choices[4][2];

questions[5] = "6) At number 52, what is meant by ‘commuting’?";
choices[5] = new Array();
choices[5][0] = "socialising ";
choices[5][1] = "travelling to work";
choices[5][2] = "talking with friends and family";
choices[5][3] = "communicating through email";
answers[5] = choices[5][1];

questions[6] = "7) At number 55, what is meant by ‘cooperative housing’?";
choices[6] = new Array();
choices[6][0] = "a group of people who live in the same building and make decisions about the property";
choices[6][1] = "a housing charity";
choices[6][2] = "a house";
choices[6][3] = "a business specialising in one type of housing";
answers[6] = choices[6][0];

questions[7] = "8) At number 66, what is meant by ‘evolved from its origins’?";
choices[7] = new Array();
choices[7][0] = "couldn’t stay the same";
choices[7][1] = "changed from when it first began";
choices[7][2] = "changed completely";
answers[7] = choices[7][1];

questions[8] = "9) At number 88, what is meant by ‘word of mouth’?";
choices[8] = new Array();
choices[8][0] = "speaking aloud";
choices[8][1] = "speaking to other people";
choices[8][2] = "hear about something from another person telling you";
choices[8][3] = "a word from your mouth";
answers[8] = choices[8][2];

questions[9] = "10) At number 107, what is meant by ‘wrecked the property’?";
choices[9] = new Array();
choices[9][0] = "someone who did not like the property ";
choices[9][1] = "broke lots of things in the house";
choices[9][2] = "someone who did not pay rent";
choices[9][3] = "kept everything clean and new in the house";
answers[9] = choices[9][1];


// 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.";
