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

questions[0] = "1) At number 1, what is meant by ‘a lot of what you do’?";
choices[0] = new Array();
choices[0][0] = "the things she says ";
choices[0][1] = "the things she does in her spare time";
choices[0][2] = "things she likes to do in her job";
choices[0][3] = "the most common thing she does in her job";
answers[0] = choices[0][3];

questions[1] = "2) At number 2, what is meant by ‘personal responsibility’?";
choices[1] = new Array();
choices[1][0] = "personal hygiene ";
choices[1][1] = "things we blame others for";
choices[1][2] = "we are each answerable for the things we do";
choices[1][3] = "we should be careful";
answers[1] = choices[1][2];

questions[2] = "3) At number 4, what is meant by ‘I have a bit of an issue’?";
choices[2] = new Array();
choices[2][0] = "I need the toilet";
choices[2][1] = "I’m not feeling too good";
choices[2][2] = "I have a problem or I get annoyed";
choices[2][3] = "I have something I need to say";
answers[2] = choices[2][2];

questions[3] = "4) At number 4, what is meant by ‘we have to take that on board’?";
choices[3] = new Array();
choices[3][0] = "you have to accept something and think about it";
choices[3][1] = "something you wish to deny";
choices[3][2] = "a possession you have to take on board an aeroplane";
answers[3] = choices[3][0];

questions[4] = "5) At number 4, what is meant by ‘blame culture’?";
choices[4] = new Array();
choices[4][0] = "a society where it is common for people to blame each other";
choices[4][1] = "where we hold our self responsible  ";
choices[4][2] = "where somebody takes responsibility for their actions";
choices[4][3] = "blaming the culture when things go wrong";
answers[4] = choices[4][0];

questions[5] = "6) At number 6, what is meant by ‘jagged or out of order’?";
choices[5] = new Array();
choices[5][0] = "sharp";
choices[5][1] = "broken or not working";
choices[5][2] = "not open";
choices[5][3] = "closed";
answers[5] = choices[5][1];

questions[6] = "7) How did Carole break her nose?";
choices[6] = new Array();
choices[6][0] = "she tripped over her own feet and hit the pavement";
choices[6][1] = "she tripped over a ball and hit the pavement";
choices[6][2] = "she tripped over a broken kerb and hit the pavement";
choices[6][3] = "she tripped over a stone and hit the pavement";
answers[6] = choices[6][2];

questions[7] = "8) Why didn’t she use her hands to stop her face hitting the pavement?";
choices[7] = new Array();
choices[7][0] = "because she was sipping her drink";
choices[7][1] = "because she was on the phone";
choices[7][2] = "because she was listening to her walkman";
choices[7][3] = "because her hands were in her pocket";
answers[7] = choices[7][3];

questions[8] = "9) At number 6, what is meant by ‘the Council’?";
choices[8] = new Array();
choices[8][0] = "a public organisation ";
choices[8][1] = "a block of council flats";
choices[8][2] = "government group of people responsible for running each city";
choices[8][3] = "the name of a shop or company";
answers[8] = choices[8][2];

questions[9] = "10) Who does Carole think is to blame for breaking her nose?";
choices[9] = new Array();
choices[9][0] = "herself";
choices[9][1] = "the Council";
choices[9][2] = "the kerb company";
choices[9][3] = "the police force";
answers[9] = choices[9][0];


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