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

questions[0] = "1) What ‘can’ you do when you are 13?";
choices[0] = new Array();
choices[0][0] = "drive a car";
choices[0][1] = "vote";
choices[0][2] = "get married";
choices[0][3] = "have a paid, part-time job";
answers[0] = choices[0][3];

questions[1] = "2) What ‘can’t’ you do when you are 14? ";
choices[1] = new Array();
choices[1][0] = "buy alcohol in a pub";
choices[1][1] = "go to a pub";
choices[1][2] = "have a part time job";
choices[1][3] = "talk to your parents about your problems";
answers[1] = choices[1][0];

questions[2] = "3) At what age are you able to leave school?  ";
choices[2] = new Array();
choices[2][0] = "14";
choices[2][1] = "15";
choices[2][2] = "16";
choices[2][3] = "17";
answers[2] = choices[2][2];

questions[3] = "4) At what age is it legal for someone to have sex?  ";
choices[3] = new Array();
choices[3][0] = "13";
choices[3][1] = "14";
choices[3][2] = "15";
choices[3][3] = "16";
answers[3] = choices[3][3];

questions[4] = "5) Which of these activities is illegal when you are 17?";
choices[4] = new Array();
choices[4][0] = "buying cigarettes";
choices[4][1] = "working full time";
choices[4][2] = "claiming social security benefit";
choices[4][3] = "leaving home without telling your parents";
answers[4] = choices[4][0];

questions[5] = "6) When you are 18 you can join the 'armed forces'. What does this mean?";
choices[5] = new Array();
choices[5][0] = "you can have cosmetic surgery";
choices[5][1] = "you can attend a gym to get fit";
choices[5][2] = "you can become a soldier";
choices[5][3] = "you can study medicine";
answers[5] = choices[5][2];

questions[6] = "7) When you are 18 you can be paid the 'national minimum wage'. What does this mean? ";
choices[6] = new Array();
choices[6][0] = "you can have your own shop";
choices[6][1] = "your boss must pay you a very good wage";
choices[6][2] = "your boss can pay you any wage he / she wants";
choices[6][3] = "this is the lowest amount of money anyone can be paid ";
answers[6] = choices[6][3];

questions[7] = "8) What does ‘adopt a child’ mean? You can do this when you are 21.";
choices[7] = new Array();
choices[7][0] = "give birth to a child";
choices[7][1] = "become a friend of your neighbour’s child";
choices[7][2] = "look after a friend’s child for a short time";
choices[7][3] = "look after another person’s child for ever, as your son or daughter";
answers[7] = choices[7][3];

questions[8] = "9) How old must you be to vote? ";
choices[8] = new Array();
choices[8][0] = "14";
choices[8][1] = "16";
choices[8][2] = "18";
choices[8][3] = "21";
answers[8] = choices[8][2];

questions[9] = "10) How old must you be to become a member of Parliament?";
choices[9] = new Array();
choices[9][0] = "16";
choices[9][1] = "18";
choices[9][2] = "19";
choices[9][3] = "21";
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.";