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

questions[0] = "1) What is meant by 'it depends hugely'?";
choices[0] = new Array();
choices[0][0] = "it depends a bit";
choices[0][1] = "it has to be big";
choices[0][2] = "time is huge";
choices[0][3] = "it depends a lot";
answers[0] = choices[0][3];

questions[1] = "2) What is meant by 'respond to the needs of the area'?";
choices[1] = new Array();
choices[1][0] = "ask people to respond";
choices[1][1] = "do something to help improve the area";
choices[1][2] = "talk about the needs of the area";
choices[1][3] = "look for ways to help the area";
answers[1] = choices[1][1];

questions[2] = "3) What prevents people from being more 'responsive'?";
choices[2] = new Array();
choices[2][0] = "family";
choices[2][1] = "getting married";
choices[2][2] = "having a young family";
choices[2][3] = "family and work";
answers[2] = choices[2][3];

questions[3] = "4) What is the best explanation of 'community'?";
choices[3] = new Array();
choices[3][0] = "a group of people who live together";
choices[3][1] = "a group of people who share something, like a religion or living close together";
choices[3][2] = "people who like to be with other people";
choices[3][3] = "people who live close together";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'simply an individual'?";
choices[4] = new Array();
choices[4][0] = "someone who doesn't belong to a community";
choices[4][1] = "someone who belongs to a community";
choices[4][2] = "someone who tries to join a community";
choices[4][3] = "someone who has left a community";
answers[4] = choices[4][0];

questions[5] = "6) Which is the best explanation of 'over-used word'?";
choices[5] = new Array();
choices[5][0] = "a word that is used";
choices[5][1] = "a word that is often used";
choices[5][2] = "a word that is spoken a lot";
choices[5][3] = "a word that is spoken too much";
answers[5] = choices[5][3];

questions[6] = "7) What is meant by 'council life'?";
choices[6] = new Array();
choices[6][0] = "people who live in council houses";
choices[6][1] = "people who live in a council area";
choices[6][2] = "people who work for the council";
choices[6][3] = "people who are involved in council meetings and events";
answers[6] = choices[6][3];

questions[7] = "8) What is meant by 'or whatever'?";
choices[7] = new Array();
choices[7][0] = "what people do when they meet";
choices[7][1] = "whatever happens";
choices[7][2] = "there are lots of other examples";
choices[7][3] = "Roger doesn't want to talk anymore";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'ditto'?";
choices[8] = new Array();
choices[8][0] = "this is true";
choices[8][1] = "this is similar";
choices[8][2] = "the same applies";
choices[8][3] = "this is different";
answers[8] = choices[8][2];

questions[9] = "10) What is meant by 'little bits of community'?";
choices[9] = new Array();
choices[9][0] = "communities have smaller communities in them";
choices[9][1] = "communities have bigger communities close to them";
choices[9][2] = "communities are all very different";
choices[9][3] = "communities are made of little bits";
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.";