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

questions[0] = "1) Who does Joanne think we should speak to?";
choices[0] = new Array();
choices[0][0] = "neighbours";
choices[0][1] = "other people";
choices[0][2] = "citizens";
choices[0][3] = "elderly people";
answers[0] = choices[0][0];

questions[1] = "2) What is meant by 'community perspective'?";
choices[1] = new Array();
choices[1][0] = "to be a better citizen";
choices[1][1] = "to help your neighbours";
choices[1][2] = "for the good of the country";
choices[1][3] = "to make the community better";
answers[1] = choices[1][3];

questions[2] = "3) What is meant by a 'closed society'?";
choices[2] = new Array();
choices[2][0] = "people are more open";
choices[2][1] = "people are more private";
choices[2][2] = "society is closed";
choices[2][3] = "people don't like each other";
answers[2] = choices[2][1];

questions[3] = "4) What is meant by 'actions'?";
choices[3] = new Array();
choices[3][0] = "what you do to other people";
choices[3][1] = "what you say and do to other people";
choices[3][2] = "What you say to other people";
choices[3][3] = "what your actions are";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'impact'?";
choices[4] = new Array();
choices[4][0] = "what you do effects other people";
choices[4][1] = "what you do doesn't matter";
choices[4][2] = "how you hurt other people";
answers[4] = choices[4][0];

questions[5] = "6) What is meant by 'thinking about how your actions will impact on others'?";
choices[5] = new Array();
choices[5][0] = "understanding how your behaviour doesn't effect other people";
choices[5][1] = "understanding how your behaviour might offend or hurt other people";
answers[5] = choices[5][1];

questions[6] = "7) What is meant by 'opened that up for myself'?";
choices[6] = new Array();
choices[6][0] = "helped her to work better";
choices[6][1] = "helped her to speak to more people";
choices[6][2] = "helped her to be a better citizen";
choices[6][3] = "helped her to understand better";
answers[6] = choices[6][3];

questions[7] = "8) What two small things can people do to make life better?";
choices[7] = new Array();
choices[7][0] = "smile and open doors";
choices[7][1] = "say hello and open doors";
choices[7][2] = "smile and say hello";
choices[7][3] = "say hello and visit the elderly";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'younger ones who are perhaps unaccompanied'?";
choices[8] = new Array();
choices[8][0] = "young students who do not have friends";
choices[8][1] = "young students who do not have good company";
choices[8][2] = "young students who do not have parents or adult guardians";
choices[8][3] = "young students who want to be on their own";
answers[8] = choices[8][2];

questions[9] = "10) What is meant by 'only form of contact'?";
choices[9] = new Array();
choices[9][0] = "students who have no one else to talk to";
choices[9][1] = "students who do not want to contact anyone else";
choices[9][2] = "students who want to contact someone else";
choices[9][3] = "students who can't complete forms";
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.";