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

questions[0] = "1) In the first paragraph, what is meant by 'partner'?";
choices[0] = new Array();
choices[0][0] = "boyfriend";
choices[0][1] = "friend";
choices[0][2] = "wife";
choices[0][3] = "husband";
answers[0] = choices[0][3];

questions[1] = "2) What is meant by 'doesn't get out very often'?";
choices[1] = new Array();
choices[1][0] = "someone who leaves their home a lot";
choices[1][1] = "someone who is never at home";
choices[1][2] = "someone who stays at home a lot";
choices[1][3] = "someone who is always out";
answers[1] = choices[1][2];

questions[2] = "3) What is meant by 'any shopping doing'?";
choices[2] = new Array();
choices[2][0] = "someone who needs something from a shop";
choices[2][1] = "someone who needs to go to the shop";
choices[2][2] = "someone who needs shopping collecting from the shop";
choices[2][3] = "someone who likes shopping";
answers[2] = choices[2][0];

questions[3] = "4) What is meant by 'just to be sociable'?";
choices[3] = new Array();
choices[3][0] = "offer your help because people like talking";
choices[3][1] = "offer your help to be friendly";
choices[3][2] = "offer your help because someone might need help";
choices[3][3] = "offer your help to be happy";
answers[3] = choices[3][1];

questions[4] = "5) According to Pat, what two things are important to be sociable?";
choices[4] = new Array();
choices[4][0] = "offer to help with shopping and smile";
choices[4][1] = "work at a hospital and smile";
choices[4][2] = "smile at people and say hello";
choices[4][3] = "offer to help with shopping and say hello";
answers[4] = choices[4][2];

questions[5] = "6) What is meant by 'it means a lot'?";
choices[5] = new Array();
choices[5][0] = "it's valuable";
choices[5][1] = "it's important";
choices[5][2] = "it's not important";
choices[5][3] = "it's very important";
answers[5] = choices[5][3];

questions[6] = "7) What is meant by 'I've realised that'?";
choices[6] = new Array();
choices[6][0] = "I don't understand";
choices[6][1] = "I can now do it";
choices[6][2] = "I now understand";
answers[6] = choices[6][2];

questions[7] = "8) What is meant by 'such and such'?";
choices[7] = new Array();
choices[7][0] = "a place called 'such and such'";
choices[7][1] = "Pat has pronounced the name incorrectly";
choices[7][2] = "a phrase used to refer to something you can't name";
choices[7][3] = "a verb describing how to get to somewhere";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'physically able to'?";
choices[8] = new Array();
choices[8][0] = "someone who likes doing physical things";
choices[8][1] = "someone who likes running to the shop";
choices[8][2] = "someone who can do things using their own body";
answers[8] = choices[8][2];

questions[9] = "10) What is meant by 'they will acknowledge you back'?";
choices[9] = new Array();
choices[9][0] = "people will smile back at you";
choices[9][1] = "people will say hello to you";
choices[9][2] = "people will know who you are";
choices[9][3] = "people will be happy to stay in the hospital";
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.";