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

questions[0] = "1) When did Monira come to Leeds?";
choices[0] = new Array();
choices[0][0] = "1979";
choices[0][1] = "1977";
choices[0][2] = "79";
choices[0][3] = "77";
answers[0] = choices[0][0];

questions[1] = "2) At number 3, what is meant by ‘your experiences of racism’?";
choices[1] = new Array();
choices[1][0] = "if you have seen anyone from a different race";
choices[1][1] = "if you have suffered from abuse because of your skin colour or race";
choices[1][2] = "if you have seen racism in your area";
answers[1] = choices[1][1];

questions[2] = "3) At number 7, what is meant by ‘I saw some glasses’? ";
choices[2] = new Array();
choices[2][0] = "I saw my drinking glasses broken";
choices[2][1] = "I saw a man wearing glasses";
choices[2][2] = "I saw broken window glass";
choices[2][3] = "I saw broken car window";
answers[2] = choices[2][2];

questions[3] = "4) At number 8, what is meant by ‘I just pick up’?";
choices[3] = new Array();
choices[3][0] = "I picked up my son";
choices[3][1] = "I picked up the washing";
choices[3][2] = "I picked up the phone";
choices[3][3] = "I picked up the broken glass";
answers[3] = choices[3][3];

questions[4] = "5) At number 13, why did the police think it wasn’t racism?";
choices[4] = new Array();
choices[4][0] = "because people were throwing stones and bottles in lots of places";
choices[4][1] = "because it hadn’t happened many times";
choices[4][2] = "because they could not prove who had done it";
answers[4] = choices[4][0];

questions[5] = "6) At number 19, what is meant by ‘this target to disturb him as well’?";
choices[5] = new Array();
choices[5][0] = "people didn’t like her neighbour";
choices[5][1] = "her neighbour became a victim because he helped Monira";
choices[5][2] = "people attacked her neighbour";
answers[5] = choices[5][1];

questions[6] = "7) At number 23, what is the ‘National Front’?";
choices[6] = new Array();
choices[6][0] = "a local community";
choices[6][1] = "an organisation that supports all race and religions";
choices[6][2] = "an organisation that supports white people only and is against immigration";
choices[6][3] = "a place to visit";
answers[6] = choices[6][2];

questions[7] = "8) At number 24, where did the heavy ball come from?";
choices[7] = new Array();
choices[7][0] = "a neighbours house ";
choices[7][1] = "from the victims house";
choices[7][2] = "the shop around the corner";
choices[7][3] = "a pool ball taken from the National Front Office";
answers[7] = choices[7][3];

questions[8] = "9) At number 27, what is meant by ‘my mind was much fresher’?";
choices[8] = new Array();
choices[8][0] = "my mind was much calmer";
choices[8][1] = "my mind was spotless";
choices[8][2] = "my head was clean";
choices[8][3] = "my head was open";
answers[8] = choices[8][0];

questions[9] = "10) At number 28, what does Monira mean by ‘find themselves isolated’?";
choices[9] = new Array();
choices[9][0] = "find themselves very cold";
choices[9][1] = "they will be very alone  ";
choices[9][2] = "find themselves very popular";
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.";
