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 ‘a debate that surrounds what a home is’?";
choices[0] = new Array();
choices[0][0] = "a discussion held by many people";
choices[0][1] = "how many people live in one household";
choices[0][2] = "arguments that start at home";
choices[0][3] = "confrontation over living arrangements";
answers[0] = choices[0][0];

questions[1] = "2) At number 2, what is meant by ‘within the sector’?";
choices[1] = new Array();
choices[1][0] = "people who fit into certain stereotypes ";
choices[1][1] = "areas which people live in";
choices[1][2] = "a problem in housing";
choices[1][3] = "shared by people in a particular area, like housing";
answers[1] = choices[1][3];

questions[2] = "3) At number 2, what project helped to rebuild the homeless shelter at St George’s Crypt?";
choices[2] = new Array();
choices[2][0] = "The Home Appeal";
choices[2][1] = "More Than a Home Appeal";
choices[2][2] = "More Than a Roof Appeal";
choices[2][3] = "the Rooflessness Appeal";
answers[2] = choices[2][2];

questions[3] = "4) At number 2, what is meant by ‘grow and flourish’?";
choices[3] = new Array();
choices[3][0] = "find friends";
choices[3][1] = "be happy and develop as an individual";
choices[3][2] = "live in a house with a garden";
choices[3][3] = "have a happy family";
answers[3] = choices[3][1];

questions[4] = "5) At number 5, what is meant by ‘rooflessness’?";
choices[4] = new Array();
choices[4][0] = "someone who does not have anywhere to live";
choices[4][1] = "a house which needs repairs on the roof";
choices[4][2] = "someone whose house does not have a roof";
choices[4][3] = "someone who needs a roof";
answers[4] = choices[4][0];

questions[5] = "6) At number 6, what type of temporary accommodation might people stay in?";
choices[5] = new Array();
choices[5][0] = "local authority and community and friends";
choices[5][1] = "local authority, community and friends";
choices[5][2] = "local authority, family and friends";
choices[5][3] = "local authority, community, family and friends";
answers[5] = choices[5][3];

questions[6] = "7) At number 8, what is meant by ‘million dollar question’?";
choices[6] = new Array();
choices[6][0] = "a very difficult question to answer";
choices[6][1] = "a question which gets asked all the time";
choices[6][2] = "a very easy question to answer";
choices[6][3] = "a popular question";
answers[6] = choices[6][0];

questions[7] = "8) At number 8, what is meant by ‘last official headcount’?";
choices[7] = new Array();
choices[7][0] = "counting the number of heads";
choices[7][1] = "counting of people by a government agency";
choices[7][2] = "counting the number of people who work in the building";
answers[7] = choices[7][1];

questions[8] = "9) At number 9, what is meant by ‘accommodation which is insecure’?";
choices[8] = new Array();
choices[8][0] = "somewhere that is not safe or not suitable";
choices[8][1] = "a place which is situated in an unknown area";
choices[8][2] = "somewhere that is safe to live";
choices[8][3] = "a place which the person does not like";
answers[8] = choices[8][0];

questions[9] = "10) At number 10, what is meant by ‘really tough to do’?";
choices[9] = new Array();
choices[9][0] = "something that requires a lot of people to do";
choices[9][1] = "something which is easy to do";
choices[9][2] = "something which people don’t like to do";
choices[9][3] = "something which is difficult to do";
answers[9] = choices[9][3];


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