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

questions[0] = "1) At number 12, what is meant by ‘people are really missing out if they don’t go’?";
choices[0] = new Array();
choices[0][0] = "people are not allowed out of the building";
choices[0][1] = "people will miss the library’s special shows";
choices[0][2] = "people will not learn about something interesting";
choices[0][3] = "people will be missed if they don’t go";
answers[0] = choices[0][2];

questions[1] = "2) At number 15, what can you find in archives?";
choices[1] = new Array();
choices[1][0] = "a lot of new books";
choices[1][1] = "historical documents, old photographs and newspaper cuttings";
choices[1][2] = "the latest news";
choices[1][3] = "information on English grammar";
answers[1] = choices[1][1];

questions[2] = "3) At number 19, what is meant by ‘have got an awful lot to offer children’?";
choices[2] = new Array();
choices[2][0] = "something that is bad to show children";
choices[2][1] = "a large amount of things for children to see";
choices[2][2] = "something that is awful";
choices[2][3] = "a lot of children";
answers[2] = choices[2][1];

questions[3] = "4) At number 19, what is meant by ‘geared up for children’?";
choices[3] = new Array();
choices[3][0] = "speeding in the car when the children are with you";
choices[3][1] = "asking children to change gears in the car";
choices[3][2] = "make an activity suitable for children so they can enjoy it";
answers[3] = choices[3][2];

questions[4] = "5) At number 19, in a 'craft session' you can:";
choices[4] = new Array();
choices[4][0] = "make things using special skills, especially with your hands";
choices[4][1] = "eat a lot of tasty food";
choices[4][2] = "talk about English language";
choices[4][3] = "read interesting books";
answers[4] = choices[4][0];

questions[5] = "6) At number 21, what is meant by an 'accessible' place?";
choices[5] = new Array();
choices[5][0] = "a place is far away";
choices[5][1] = "you are not allowed to go into that place";
choices[5][2] = "a place is easily entered and used";
choices[5][3] = "it is a very dangerous place";
answers[5] = choices[5][2];

questions[6] = "7) At number 31, why do libraries organise ‘I.T. taster sessions’?";
choices[6] = new Array();
choices[6][0] = "to meet and taste different kinds of food in a computer room";
choices[6][1] = "to help people understand how to use computers";
choices[6][2] = "to meet other people for a chat";
answers[6] = choices[6][1];

questions[7] = "8) At number 3, what is meant by ‘for instance’?";
choices[7] = new Array();
choices[7][0] = "to do something immediately";
choices[7][1] = "for example";
choices[7][2] = "to do something all the times";
choices[7][3] = "for ever";
answers[7] = choices[7][1];

questions[8] = "9) At number 4, what is meant by ‘initiatives’?";
choices[8] = new Array();
choices[8][0] = "new plans for dealing with a particular problem";
choices[8][1] = "introductions to stories";
choices[8][2] = "the first letters of a person’s name ";
answers[8] = choices[8][0];

questions[9] = "10) At number 26, what is meant by ‘a host of facilities’?";
choices[9] = new Array();
choices[9][0] = "a person who welcomes you and shows you the place";
choices[9][1] = "equipment which is dangerous to use";
choices[9][2] = "a large number of equipment and other things for people to use";
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.";