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

questions[0] = "1) At number 4, what does ‘basically’ mean? ";
choices[0] = new Array();
choices[0][0] = "a place where you can buy weapons";
choices[0][1] = "the simple, real meaning of something";
choices[0][2] = "something dangerous";
choices[0][3] = "a museum";
answers[0] = choices[0][1];

questions[1] = "2) At number 4, Annabel talks about ‘arms and armour’. What does she mean by ‘arms’?";
choices[1] = new Array();
choices[1][0] = "a part of the body";
choices[1][1] = "weapons, like guns and knives";
choices[1][2] = "a museum";
choices[1][3] = "old things";
answers[1] = choices[1][1];

questions[2] = "3) At number 6, what is meant by ‘opened to the public’?";
choices[2] = new Array();
choices[2][0] = "put on the road for everyone to see";
choices[2][1] = "put in a shop";
choices[2][2] = "the Queen and her family kept the things";
choices[2][3] = "ordinary people could go to see the things";
answers[2] = choices[2][3];

questions[3] = "4) At number 8, why was the museum brought to Leeds?";
choices[3] = new Array();
choices[3][0] = "the people working in the museum were homeless";
choices[3][1] = "the people working in the museum lived in Leeds";
choices[3][2] = "there was no space in the Tower of London";
choices[3][3] = "Leeds is a famous city and many people visit it";
answers[3] = choices[3][2];

questions[4] = "5) At number 10, Annabel says, ‘Our greatest strength ...’ Who is she talking about when she says ‘our’?";
choices[4] = new Array();
choices[4][0] = "England";
choices[4][1] = "the museum";
choices[4][2] = "Leeds";
choices[4][3] = "the World";
answers[4] = choices[4][1];

questions[5] = "6) At number 12, Annabel talks about ‘live action’ and ‘live interpretation.’ What do you think this means?";
choices[5] = new Array();
choices[5][0] = "you can see real fights and touch the weapons";
choices[5][1] = "there are translators who speak different languages at the museum";
choices[5][2] = "you can watch exciting movies";
choices[5][3] = "you can feed the horses";
answers[5] = choices[5][0];

questions[6] = "7) At number 14, what is meant by ‘put the horses to sleep’?";
choices[6] = new Array();
choices[6][0] = "give the horses food at the end of the day";
choices[6][1] = "send the horses back to Poland";
choices[6][2] = "give the horses tablets to make them sleep";
choices[6][3] = "kill the horses if they are very old or ill";
answers[6] = choices[6][3];

questions[7] = "8) What is a tournament?";
choices[7] = new Array();
choices[7][0] = "a fight with people on horses attacking one another";
choices[7][1] = "a game for children";
choices[7][2] = "a way to say how fast something is moving";
choices[7][3] = "a story about the past";
answers[7] = choices[7][0];

questions[8] = "9) Tournaments are very dangerous. Why?";
choices[8] = new Array();
choices[8][0] = "because people can fall of their horse";
choices[8][1] = "because the horses can stand on people";
choices[8][2] = "because the horses run very fast and the riders hit each other very hard";
choices[8][3] = "because the horses run fast after the people";
answers[8] = choices[8][2];

questions[9] = "10) At number 16, what is meant by ‘turn the tide’?";
choices[9] = new Array();
choices[9][0] = "to change opinions, ideas and beliefs in society";
choices[9][1] = "to visit the seaside and walk in the water";
choices[9][2] = "to fight anybody who hurts you ";
choices[9][3] = "to never fight anybody";
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.";
