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

questions[0] = "1) At number 10, what is meant by ‘a bit more airy’?";
choices[0] = new Array();
choices[0][0] = "a cold atmosphere ";
choices[0][1] = "a space that shows the sky";
choices[0][2] = "something that has more space and open areas ";
choices[0][3] = "something that you can breathe air into";
answers[0] = choices[0][2];

questions[1] = "2) At number 22, what is meant by ‘feel odd’?";
choices[1] = new Array();
choices[1][0] = "feel rough and bumpy ";
choices[1][1] = "feel at ease";
choices[1][2] = "feel comfortable";
choices[1][3] = "feel uncomfortable";
answers[1] = choices[1][3];

questions[2] = "3) At number 26, what is meant by ‘my peers’?";
choices[2] = new Array();
choices[2][0] = "people who are your enemy";
choices[2][1] = "people who are important to you";
choices[2][2] = "people you do not know";
choices[2][3] = "people who you may dislike";
answers[2] = choices[2][1];

questions[3] = "4) At number 36, what is meant by ‘not making a big issue’?";
choices[3] = new Array();
choices[3][0] = "don’t make something more important than it is";
choices[3][1] = "taking something out of context";
choices[3][2] = "don’t make something big";
choices[3][3] = "to scream and shout";
answers[3] = choices[3][0];

questions[4] = "5) At number 76, what is meant by ‘certain criteria of people’?";
choices[4] = new Array();
choices[4][0] = "a range of people";
choices[4][1] = "certain type of person";
choices[4][2] = "a confident person";
choices[4][3] = "a group of people who are happy";
answers[4] = choices[4][1];

questions[5] = "6) At number 80, what is meant by ‘cool’?";
choices[5] = new Array();
choices[5][0] = "icy weather";
choices[5][1] = "cold";
choices[5][2] = "excellent";
choices[5][3] = "not good";
answers[5] = choices[5][2];

questions[6] = "7) At number 84, what is meant by ‘regimented’?";
choices[6] = new Array();
choices[6][0] = "something that is done quickly ";
choices[6][1] = "something  that is not planned";
choices[6][2] = "something that is done unexpectedly       ";
choices[6][3] = "something that is very organised and official, e.g. the military";
answers[6] = choices[6][3];

questions[7] = "8) At number 86, what is meant by ‘charity begins at home’?";
choices[7] = new Array();
choices[7][0] = "helping others should start with your own family";
choices[7][1] = "stay at home";
choices[7][2] = "only ask for help from your own family";
choices[7][3] = "only thinking about yourself";
answers[7] = choices[7][0];

questions[8] = "9) At number 105, what is meant by ‘you foster both’?";
choices[8] = new Array();
choices[8][0] = "to discourage and reject ";
choices[8][1] = "foster two children";
choices[8][2] = "to develop and protect";
choices[8][3] = "to adopt a child";
answers[8] = choices[8][2];

questions[9] = "10) At number 108, what is meant by ‘a community activist’?";
choices[9] = new Array();
choices[9][0] = "someone who shows no support to their neighborhood";
choices[9][1] = "someone who does not help the community";
choices[9][2] = "someone who lacks enthusiasm ";
choices[9][3] = "someone who works hard to help and support a community";
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.";
