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

questions[0] = "1) At number 4, what is meant by ‘hit and run accident’?";
choices[0] = new Array();
choices[0][0] = "to be hit by a car when you are running";
choices[0][1] = "you run into a car by accident";
choices[0][2] = "hit a car on purpose";
choices[0][3] = "to be hit by a car but the driver deliberately drives away";
answers[0] = choices[0][3];

questions[1] = "2) At number 5, why did Claudia’s ‘car hit the car in front’?";
choices[1] = new Array();
choices[1][0] = "because she was driving too fast";
choices[1][1] = "because she wasn’t concentrating";
choices[1][2] = "because she was angry";
choices[1][3] = "because her car was hit from behind which pushed her car forward";
answers[1] = choices[1][3];

questions[2] = "3) At number 12, what is meant by ‘I looked at her in amazing shock’?";
choices[2] = new Array();
choices[2][0] = "she was very angry";
choices[2][1] = "she was very upset";
choices[2][2] = "she was very surprised";
answers[2] = choices[2][2];

questions[3] = "4) At number 13, what is meant by ‘shunted’?";
choices[3] = new Array();
choices[3][0] = "her car was pushed forward because it was hit from behind";
choices[3][1] = "her car needed new brakes";
choices[3][2] = "her car was badly damaged";
choices[3][3] = "her car was tool old for the road";
answers[3] = choices[3][0];

questions[4] = "5) At number 17, what do you think ‘St James’ is?";
choices[4] = new Array();
choices[4][0] = "a hospital";
choices[4][1] = "a doctor’s surgery";
choices[4][2] = "a type of ambulance";
choices[4][3] = "an emergency ward for car accidents";
answers[4] = choices[4][0];

questions[5] = "6) At number 32, what is meant by ‘they saw the state I was in’?";
choices[5] = new Array();
choices[5][0] = "they saw how upset and shocked she was";
choices[5][1] = "they found out where she lived";
choices[5][2] = "they saw the clothes she was wearing";
choices[5][3] = "they saw the car she was driving";
answers[5] = choices[5][0];

questions[6] = "7) At number 38, what is meant by ‘the police were pushy’?";
choices[6] = new Array();
choices[6][0] = "the police were forceful and kept asking questions";
choices[6][1] = "the police were helpful";
choices[6][2] = "the police were angry with her";
choices[6][3] = "the police didn’t like her";
answers[6] = choices[6][0];

questions[7] = "8) At number 46-51, why didn’t the police write a report?";
choices[7] = new Array();
choices[7][0] = "because they thought Claudia was lying";
choices[7][1] = "because they couldn’t find the driver of the other car";
choices[7][2] = "because they thought the car crash was an accident, not a crime";
answers[7] = choices[7][2];

questions[8] = "9) At number 86, what is meant by ‘the girl is not claiming liable’?";
choices[8] = new Array();
choices[8][0] = "the girl was lying";
choices[8][1] = "the girl isn’t claiming any money";
choices[8][2] = "the girl is unhappy";
choices[8][3] = "the girl says she is innocent; she is not to blame";
answers[8] = choices[8][3];

questions[9] = "10) At number 88, what is meant by ‘it’s a write-off’?";
choices[9] = new Array();
choices[9][0] = "the insurance company destroy the car rather than pay for it to be repaired";
choices[9][1] = "the insurance company repair the car";
choices[9][2] = "the insurance company won’t pay for the repairs";
choices[9][3] = "the insurance company write to you";
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.";