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

questions[0] = "1) At number 4, what is meant by ‘think global’?";
choices[0] = new Array();
choices[0][0] = "think about global warming";
choices[0][1] = "think about the people in your area";
choices[0][2] = "think about the wider world";
choices[0][3] = "think of big ideas";
answers[0] = choices[0][2];

questions[1] = "2) At number 4, what is meant by ‘we’re all mixed up’?";
choices[1] = new Array();
choices[1][0] = "we’re all tangled up";
choices[1][1] = "we’re all very diverse";
choices[1][2] = "things are more confusing ";
choices[1][3] = "everything is the same";
answers[1] = choices[1][2];

questions[2] = "3) At number 6, what is meant by ‘reconcile things at the street level’?";
choices[2] = new Array();
choices[2][0] = "stop fighting on the street";
choices[2][1] = "talk about problems on the street";
choices[2][2] = "listen to your neighbour";
choices[2][3] = "solve problems which are in our area";
answers[2] = choices[2][3];

questions[3] = "4) At number 7, what is meant by ‘I have to walk down the middle of the road’?";
choices[3] = new Array();
choices[3][0] = "I cannot take sides in an argument between other people";
choices[3][1] = "I walk down the middle because of workmen on either side";
choices[3][2] = "I do not like to walk on paths";
answers[3] = choices[3][0];

questions[4] = "5) At number 8, what is meant by ‘inter-married’?";
choices[4] = new Array();
choices[4][0] = "people who marry from different religions or race";
choices[4][1] = "people who get married more than once";
choices[4][2] = "people who marry abroad";
choices[4][3] = "people who marry the same sex";
answers[4] = choices[4][0];

questions[5] = "6) At number 8, what is meant by ‘call the war off in our street’?";
choices[5] = new Array();
choices[5][0] = "stop the war in our street";
choices[5][1] = "stop fighting and arguing in our street";
choices[5][2] = "telephone someone to stop fighting in the area";
choices[5][3] = "stop all fighting everywhere";
answers[5] = choices[5][1];

questions[6] = "7) At number 11, what is meant by ‘that’s premier’?";
choices[6] = new Array();
choices[6][0] = "a premier back account";
choices[6][1] = "the prime minister";
choices[6][2] = "something that is very important";
choices[6][3] = "something that is not important ";
answers[6] = choices[6][2];

questions[7] = "8) At number 13, what is meant by ‘meeting people at all levels’?";
choices[7] = new Array();
choices[7][0] = "meeting different types of people, e.g. rich and poor, old and young";
choices[7][1] = "meeting people who are a range of heights";
choices[7][2] = "talking to people standing up or sitting down";
choices[7][3] = "meeting people in houses, flats and offices";
answers[7] = choices[7][0];

questions[8] = "9) At number 13, what is meant by ‘a people centred job’?";
choices[8] = new Array();
choices[8][0] = "a job which requires you to work in the city centre";
choices[8][1] = "a job which requires you to work with lots of people";
choices[8][2] = "a job where you are the centre of attention";
choices[8][3] = "a job with people in it";
answers[8] = choices[8][1];

questions[9] = "10) At number 15, what is meant by ‘you’ll get such a spark from that’?";
choices[9] = new Array();
choices[9][0] = "something that sparkles and glimmers";
choices[9][1] = "you’ll get an electric shock from that";
choices[9][2] = "you’ll get a surprise from doing that";
choices[9][3] = "you will get a lot of satisfaction from doing something";
answers[9] = choices[9][3];


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