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

questions[0] = "1) At number 2, what is meant by ‘miles away’?";
choices[0] = new Array();
choices[0][0] = "something that is close to you";
choices[0][1] = "five miles away exactly";
choices[0][2] = "something that is far away";
choices[0][3] = "a place where you drive a car to";
answers[0] = choices[0][2];

questions[1] = "2) At number 4, what is meant by ‘able bodied’?";
choices[1] = new Array();
choices[1][0] = "an intelligent person";
choices[1][1] = "a clever and talented person";
choices[1][2] = "someone who does have a disability ";
choices[1][3] = "someone who does not have any disabilities";
answers[1] = choices[1][3];

questions[2] = "3) At number 5, what is meant by ‘put in the spotlight’?";
choices[2] = new Array();
choices[2][0] = "too much attention is being directed towards you";
choices[2][1] = "put under a lampshade";
choices[2][2] = "where no attention is be shown towards you";
choices[2][3] = "someone shines a torch at you";
answers[2] = choices[2][0];

questions[3] = "4) At number 11, what is meant by ‘you feel like a target’?";
choices[3] = new Array();
choices[3][0] = "someone is attacking you";
choices[3][1] = "too much attention is being focussed on you";
choices[3][2] = "you don’t feel well";
choices[3][3] = "little attention is being focussed on you";
answers[3] = choices[3][1];

questions[4] = "5) At number 18, what is meant by ‘the good Samaritan’?";
choices[4] = new Array();
choices[4][0] = "someone who gets help from others";
choices[4][1] = "someone who helps others and gets paid";
choices[4][2] = "someone who helps others but doesn’t want reward";
choices[4][3] = "someone who helps other for a favour in return ";
answers[4] = choices[4][2];

questions[5] = "6) At number 32, what is meant by ‘to what degree do you have to ask’?";
choices[5] = new Array();
choices[5][0] = "how many people should you ask";
choices[5][1] = "how long should your question be";
choices[5][2] = "which person should you ask";
choices[5][3] = "to what extent; how much effort is needed from you";
answers[5] = choices[5][3];

questions[6] = "7) At number 43, what is meant by ‘I just cannot engage’?";
choices[6] = new Array();
choices[6][0] = "I am not interested";
choices[6][1] = "I cannot get married";
choices[6][2] = "I cannot join in";
choices[6][3] = "I am not happy";
answers[6] = choices[6][0];

questions[7] = "8) At number 45, what is meant by ‘blah, blah, blah’?";
choices[7] = new Array();
choices[7][0] = "the sound of  sheep";
choices[7][1] = "used in speaking when something is obvious or there is too much to say";
choices[7][2] = "the sound a baby makes when crying ";
choices[7][3] = "used when someone is stuttering with their words";
answers[7] = choices[7][1];

questions[8] = "9) At number 57, what is meant by ‘legislation’?";
choices[8] = new Array();
choices[8][0] = "legal rules";
choices[8][1] = "illegal ";
choices[8][2] = "rules made up from the public";
choices[8][3] = "something that is against the law";
answers[8] = choices[8][0];

questions[9] = "10) At number 59, what is meant by ‘they had to take note of it’?";
choices[9] = new Array();
choices[9][0] = "something to write down";
choices[9][1] = "something important which you have to think about";
choices[9][2] = "something the government says you have to do";
answers[9] = choices[9][1];


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