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

questions[0] = "1) When was the British Commonwealth created?";
choices[0] = new Array();
choices[0][0] = "2004";
choices[0][1] = "1812";
choices[0][2] = "1926";
choices[0][3] = "1970";
answers[0] = choices[0][2];

questions[1] = "2) How many member states are in the Commonwealth?";
choices[1] = new Array();
choices[1][0] = "43";
choices[1][1] = "53";
choices[1][2] = "69";
choices[1][3] = "107";
answers[1] = choices[1][1];

questions[2] = "3) At number 15, what is meant by ‘economic development’?";
choices[2] = new Array();
choices[2][0] = "helping a country to develop and grow";
choices[2][1] = "getting lots of money";
choices[2][2] = "growing food and vegetables";
choices[2][3] = "building a city";
answers[2] = choices[2][0];

questions[3] = "4) At number 16, what is meant by ‘racial equality’?";
choices[3] = new Array();
choices[3][0] = "all people are equal regardless of age";
choices[3][1] = "all people are equal regardless of height";
choices[3][2] = "all people are equal regardless of race or colour";
choices[3][3] = "all people are equal regardless of weight";
answers[3] = choices[3][2];

questions[4] = "5) How often are the Commonwealth games held?";
choices[4] = new Array();
choices[4][0] = "every year";
choices[4][1] = "every four years";
choices[4][2] = "every ten years";
choices[4][3] = "every fifty years";
answers[4] = choices[4][1];

questions[5] = "6) When was the first Commonwealth games held?";
choices[5] = new Array();
choices[5][0] = "1930 in Canada";
choices[5][1] = "1812 in Africa";
choices[5][2] = "2004 in UK";
choices[5][3] = "1974 in America";
answers[5] = choices[5][0];

questions[6] = "7) How many people are in the Commonwealth?";
choices[6] = new Array();
choices[6][0] = "1.8 billion";
choices[6][1] = "2.4 million";
choices[6][2] = "24 thousand";
choices[6][3] = "3";
answers[6] = choices[6][0];

questions[7] = "8) How often do all the Commonwealth countries meet?";
choices[7] = new Array();
choices[7][0] = "every two years";
choices[7][1] = "once a year";
choices[7][2] = "every month";
choices[7][3] = "every ten years";
answers[7] = choices[7][0];

questions[8] = "9) At number 9, what is meant by ‘promote democracy?’";
choices[8] = new Array();
choices[8][0] = "other countries should not allow the people to vote for their own government";
choices[8][1] = "other countries only allow people to vote for one party as their government";
choices[8][2] = "other countries should allow the people to vote for their own government";
answers[8] = choices[8][2];

questions[9] = "10) At number 32, what is meant by ‘expelled countries’?";
choices[9] = new Array();
choices[9][0] = "countries have been asked to join the Commonwealth";
choices[9][1] = "countries have been asked to leave the Commonwealth";
choices[9][2] = "countries which are democratic";
choices[9][3] = "countries which are not democratic";
answers[9] = choices[9][1];


// 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.";
