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

questions[0] = "1) What is meant by 'doesn't overstep the boundaries'?";
choices[0] = new Array();
choices[0][0] = "someone who doesn't follow rules or care about other people";
choices[0][1] = "someone who doesn't like to upset people";
choices[0][2] = "someone who is respectful of rules and other people";
answers[0] = choices[0][2];

questions[1] = "2) What is meant by 'would potentially hold back'?";
choices[1] = new Array();
choices[1][0] = "someone who doesn't like to be held back";
choices[1][1] = "someone who would stop and think before they did something";
choices[1][2] = "someone who would be very positive";
choices[1][3] = "someone who doesn't talk about other people";
answers[1] = choices[1][1];

questions[2] = "3) What is meant by 'spend two seconds thinking'?";
choices[2] = new Array();
choices[2][0] = "pause for two seconds and think";
choices[2][1] = "think for two seconds but no longer";
choices[2][2] = "think then do whatever you want";
choices[2][3] = "pause for a moment and think";
answers[2] = choices[2][3];

questions[3] = "4) What is meant by 'very diluted ideas'?";
choices[3] = new Array();
choices[3][0] = "very stupid ideas";
choices[3][1] = "very simplistic ideas";
choices[3][2] = "very difficult ideas";
choices[3][3] = "very good ideas";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'someone who thinks before they act'?";
choices[4] = new Array();
choices[4][0] = "someone who pauses and thinks before they do something";
choices[4][1] = "someone who should try to think more";
choices[4][2] = "someone who should just do something";
answers[4] = choices[4][0];

questions[5] = "6) What is meant by 'ongoing ramifications'?";
choices[5] = new Array();
choices[5][0] = "think about going onto help people";
choices[5][1] = "wondering what is going on";
choices[5][2] = "not worrying about what might happen";
choices[5][3] = "problems that might be created";
answers[5] = choices[5][3];

questions[6] = "7) Which definition best explains 'an ethos'?";
choices[6] = new Array();
choices[6][0] = "the way a community or group create rules";
choices[6][1] = "the religion of a community or group";
choices[6][2] = "the attitudes of a community or group";
answers[6] = choices[6][2];

questions[7] = "8) What is meant by 'does come across quite simply'?";
choices[7] = new Array();
choices[7][0] = "is very simple";
choices[7][1] = "is difficult to understand";
choices[7][2] = "is easy to understand";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'it does come across in all aspects of things'?";
choices[8] = new Array();
choices[8][0] = "thinking before acting can't help people";
choices[8][1] = "thinking before acting is a good thing";
choices[8][2] = "thinking before acting can help people in lots of different ways";
choices[8][3] = "thinking before acting can help people in a few different ways";
answers[8] = choices[8][2];

questions[9] = "10) What is meant by 'someone who just watches what they say'?";
choices[9] = new Array();
choices[9][0] = "someone who is careful not to offend people with what they say";
choices[9][1] = "someone who listens to what other people say";
choices[9][2] = "someone who likes to watch themselves speaking";
choices[9][3] = "someone who stops people saying offensive things";
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.";