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

questions[0] = "1) What is meant by 'very open question'?";
choices[0] = new Array();
choices[0][0] = "a question which is easy to answer";
choices[0][1] = "a question to which there are many possible answers";
choices[0][2] = "a question which is difficult to answer";
answers[0] = choices[0][1];

questions[1] = "2) What is meant by 'setting up life for themselves'?";
choices[1] = new Array();
choices[1][0] = "students who are beginning a new life in a new place";
choices[1][1] = "students who are starting life again";
choices[1][2] = "students who are building a new life";
answers[1] = choices[1][0];

questions[2] = "3) What is meant by 'taking away from what I see'?";
choices[2] = new Array();
choices[2][0] = "removing something that I have seen";
choices[2][1] = "thinking about what I have seen";
choices[2][2] = "not understanding what I have seen";
choices[2][3] = "learning from what I have seen";
answers[2] = choices[2][3];

questions[3] = "4) What is meant by 'taking responsibility for your own actions'?";
choices[3] = new Array();
choices[3][0] = "not having to worry about what you do";
choices[3][1] = "thinking carefully about what you do";
choices[3][2] = "being very active";
choices[3][3] = "being careful about what you say to people";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'getting on with your neighbours'?";
choices[4] = new Array();
choices[4][0] = "having a good relationship with your neighbours";
choices[4][1] = "seeing your neighbours on a regular basis";
choices[4][2] = "trying to like your neighbours";
answers[4] = choices[4][0];

questions[5] = "6) What does Carole think people should say to their neighbours?";
choices[5] = new Array();
choices[5][0] = "good morning";
choices[5][1] = "you're a nice person";
choices[5][2] = "can I open the door for you";
choices[5][3] = "hello";
answers[5] = choices[5][3];

questions[6] = "7) What should people do when entering a shop?";
choices[6] = new Array();
choices[6][0] = "close the door behind them";
choices[6][1] = "open the door";
choices[6][2] = "hold the door open for people to enter";
answers[6] = choices[6][2];

questions[7] = "8) What is meant by 'small things'?";
choices[7] = new Array();
choices[7][0] = "things that are very small";
choices[7][1] = "things that are not important";
choices[7][2] = "polite thinks like smiling and saying hello";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'stepping out the door'?";
choices[8] = new Array();
choices[8][0] = "the steps outside your door";
choices[8][1] = "walking in the community";
choices[8][2] = "standing just outside your door";
answers[8] = choices[8][2];

questions[9] = "10) What does PC stand for?";
choices[9] = new Array();
choices[9][0] = "Police Criminal";
choices[9][1] = "Police Country";
choices[9][2] = "Police Community";
choices[9][3] = "Police Constable";
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.";
