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

questions[0] = "1) At number 2, what is meant by ‘a body’?";
choices[0] = new Array();
choices[0][0] = "a living creature";
choices[0][1] = "a human being";
choices[0][2] = "an organisation";
choices[0][3] = "an individual ";
answers[0] = choices[0][2];

questions[1] = "2) At number 2, what is meant by ‘British instigation’?";
choices[1] = new Array();
choices[1][0] = "British laws and regulations";
choices[1][1] = "British rights ";
choices[1][2] = "started by the British";
choices[1][3] = "British rule";
answers[1] = choices[1][2];

questions[2] = "3) At number 2, what is meant by ‘but well beyond’?";
choices[2] = new Array();
choices[2][0] = "inside the UK";
choices[2][1] = "and much further away";
choices[2][2] = "inside Europe";
answers[2] = choices[2][1];

questions[3] = "4) At number 2, what is meant by ‘signed up to this’?";
choices[3] = new Array();
choices[3][0] = "a symbol to represent something";
choices[3][1] = "formally agreed to join something";
choices[3][2] = "a warning or symbol sign";
choices[3][3] = "a signature";
answers[3] = choices[3][1];

questions[4] = "5) At number 2, what is meant by ‘exhausted’?";
choices[4] = new Array();
choices[4][0] = "fatigued ";
choices[4][1] = "worn out";
choices[4][2] = "shattered";
choices[4][3] = "no more options left";
answers[4] = choices[4][3];

questions[5] = "6) At number 3, what is meant by ‘assumed in legal circles’?";
choices[5] = new Array();
choices[5][0] = "only for lawyers";
choices[5][1] = "for discussion in a group of people";
choices[5][2] = "talked about in courts";
choices[5][3] = "understood by people who work in law";
answers[5] = choices[5][3];

questions[6] = "7) At number 4, what is meant by ‘we always put in a clause on human rights’?";
choices[6] = new Array();
choices[6][0] = "a legal, written agreement to be signed";
choices[6][1] = "create a new human right";
choices[6][2] = "change a human right";
choices[6][3] = "make someone agree to human rights";
answers[6] = choices[6][0];

questions[7] = "8) At number 6, what is meant by ‘eminent people’?";
choices[7] = new Array();
choices[7][0] = "not very important people";
choices[7][1] = "very important people";
choices[7][2] = "people who are not known";
choices[7][3] = "someone who you would not recognise ";
answers[7] = choices[7][1];

questions[8] = "9) At number 8, what is meant by ‘rights to good governance’?";
choices[8] = new Array();
choices[8][0] = "human rights are equal";
choices[8][1] = "human rights are good";
choices[8][2] = "all citizens should have a good government";
answers[8] = choices[8][2];

questions[9] = "10) At number 8, what is meant by ‘an obligation on public authorities’?";
choices[9] = new Array();
choices[9][0] = "the responsibility of people in the community ";
choices[9][1] = "a commitment from private councils ";
choices[9][2] = "something the public have to do";
choices[9][3] = "a duty of local councils and agencies";
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.";