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

questions[0] = "1) At number 1, what is meant by ‘little pockets of growth’?";
choices[0] = new Array();
choices[0][0] = "a place where grass and trees grow";
choices[0][1] = "people who wear clothes with small pockets";
choices[0][2] = "a small area where everyone is similar, there is no cultural diversity";
choices[0][3] = "an area where everyone is different";
answers[0] = choices[0][2];

questions[1] = "2) What does Pat think a good citizen should do?";
choices[1] = new Array();
choices[1][0] = "should stay at home and not mix with other people";
choices[1][1] = "should go out to work";
choices[1][2] = "use public spaces so that they can mix with other people";
choices[1][3] = "get a good education";
answers[1] = choices[1][2];

questions[2] = "3) At number 2, what is meant by ‘public space’?";
choices[2] = new Array();
choices[2][0] = "a place for adults only";
choices[2][1] = "a place for children to play safely";
choices[2][2] = "a place for buses to park";
choices[2][3] = "a place where all people can go";
answers[2] = choices[2][3];

questions[3] = "4) At number 4, what is meant by ‘social area’?";
choices[3] = new Array();
choices[3][0] = "a place where all people can go and relax";
choices[3][1] = "a place for children";
choices[3][2] = "a place for adults only";
choices[3][3] = "a place for happy people to go";
answers[3] = choices[3][0];

questions[4] = "5) At number 4, what is meant by ‘integrate a little bit better’?";
choices[4] = new Array();
choices[4][0] = "people coming together and being friendly with each other";
choices[4][1] = "families being friendly with each other";
choices[4][2] = "learning about other people";
choices[4][3] = "staying only with your own type of people";
answers[4] = choices[4][0];

questions[5] = "6) At number 5, what is meant by ‘public transport?";
choices[5] = new Array();
choices[5][0] = "a bicycle";
choices[5][1] = "buses and trains";
choices[5][2] = "an aeroplane";
choices[5][3] = "a motorbike";
answers[5] = choices[5][1];

questions[6] = "7) At number 5, who does Pat blame for people not using public transport";
choices[6] = new Array();
choices[6][0] = "the government";
choices[6][1] = "groups of youths";
choices[6][2] = "newspapers and television for saying public transport is unreliable";
choices[6][3] = "the local council";
answers[6] = choices[6][2];

questions[7] = "8) At number 7, what is meant by ‘sat in a car on your own and irate’?";
choices[7] = new Array();
choices[7][0] = "driving on your own and getting angry at other people";
choices[7][1] = "sat in a car learning how to drive";
choices[7][2] = "sat in your car and get some sleep";
choices[7][3] = "sat in your car and eat dinner";
answers[7] = choices[7][0];

questions[8] = "9) At number 8, what is meant by people can ‘bond’ by using public areas?";
choices[8] = new Array();
choices[8][0] = "public areas are good for talking";
choices[8][1] = "sharing the same area can help people to connect with each other";
choices[8][2] = "public areas are good for ignoring other people";
answers[8] = choices[8][1];

questions[9] = "10) How does Pat think people can create a stronger community?";
choices[9] = new Array();
choices[9][0] = "by going to local meetings";
choices[9][1] = "by saying hello to people";
choices[9][2] = "by talking to each other";
choices[9][3] = "by people coming together and using public facilities and social spaces";
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.";