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

questions[0] = "1) At number 2, why is the telephone busy at eight o’clock?";
choices[0] = new Array();
choices[0][0] = "because everyone wants to speak to the doctor";
choices[0][1] = "because that is when the surgery opens";
choices[0][2] = "because people want to know when the surgery opens";
choices[0][3] = "because people want to see the doctor";
answers[0] = choices[0][1];

questions[1] = "2) At number 2, why does Mary say ‘I managed to speak to the receptionist‘?";
choices[1] = new Array();
choices[1][0] = "because she had to wait a short time";
choices[1][1] = "because she had to wait a long time";
choices[1][2] = "because she is a manager";
answers[1] = choices[1][1];

questions[2] = "3) At number 6, why didn’t Wendy move her daughter when she fell?";
choices[2] = new Array();
choices[2][0] = "her daughter was too heavy";
choices[2][1] = "she did not know where she was hurt";
choices[2][2] = "she didn’t want to damage her back";
choices[2][3] = "her daughter did not want to be moved";
answers[2] = choices[2][2];

questions[3] = "4) At number 6, how long did it take for the ambulance to arrive?";
choices[3] = new Array();
choices[3][0] = "1 hour";
choices[3][1] = "5 seconds";
choices[3][2] = "10 minutes";
choices[3][3] = "30 minutes";
answers[3] = choices[3][2];

questions[4] = "5) At number 8, why did Wendy go to hospital?";
choices[4] = new Array();
choices[4][0] = "to visit a friend";
choices[4][1] = "she was poorly";
choices[4][2] = "she was pregnant";
choices[4][3] = "to speak to a nurse";
answers[4] = choices[4][2];

questions[5] = "6) At number 10, what is meant by ‘A and E’?";
choices[5] = new Array();
choices[5][0] = "accident and emergency";
choices[5][1] = "arrive and exit";
choices[5][2] = "admit and examine";
choices[5][3] = "allow and enter";
answers[5] = choices[5][0];

questions[6] = "7) At number 10, what is meant by ‘higher priority’?";
choices[6] = new Array();
choices[6][0] = "more important";
choices[6][1] = "not important";
choices[6][2] = "do something quicker";
choices[6][3] = "do something slower";
answers[6] = choices[6][0];

questions[7] = "8) At number 11, what can’t you do before an operation?";
choices[7] = new Array();
choices[7][0] = "sleep";
choices[7][1] = "eat";
choices[7][2] = "drink";
choices[7][3] = "eat or drink";
answers[7] = choices[7][3];

questions[8] = "9) At number 11, why couldn’t Stephen buy any food?";
choices[8] = new Array();
choices[8][0] = "because he was going to have an operation";
choices[8][1] = "because everything was closed";
choices[8][2] = "because he had no money";
choices[8][3] = "you are not allowed to eat in the hospital ward";
answers[8] = choices[8][2];

questions[9] = "10) Why do you think Stephen slept at the hospital?";
choices[9] = new Array();
choices[9][0] = "because he missed his bus home";
choices[9][1] = "because he lost his house key";
choices[9][2] = "because his son was scared";
choices[9][3] = "because he liked the hospital bed";
answers[9] = choices[9][2];


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