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 skilled working class family’?";
choices[0] = new Array();
choices[0][0] = "a family that did not work";
choices[0][1] = "a family which takes prides in work that requires practical training ";
choices[0][2] = "a family that ran their own business ";
choices[0][3] = "a family that works in jobs that require education and to be academic ";
answers[0] = choices[0][1];

questions[1] = "2) At number 2, what is meant by ‘there was no expectation’?";
choices[1] = new Array();
choices[1][0] = "children from working class families were good learners";
choices[1][1] = "nothing was expected from the children";
choices[1][2] = "children were not expected to earn lots of money ";
choices[1][3] = "children from working class families were not expected to do well at school";
answers[1] = choices[1][3];

questions[2] = "3) At number 3, what is meant by ‘real Scouser at heart’?";
choices[2] = new Array();
choices[2][0] = "someone who takes pride in coming from Manchester";
choices[2][1] = "someone who dislikes coming from Liverpool  ";
choices[2][2] = "someone who takes pride in coming from Liverpool";
choices[2][3] = "someone who does not like their home town";
answers[2] = choices[2][2];

questions[3] = "4) At number 4, what is meant by ‘to help the family income,’?";
choices[3] = new Array();
choices[3][0] = "only the older children and adults work to provide food";
choices[3][1] = "the adults work whilst the children continue in education ";
choices[3][2] = "spend less money on shopping so the family has more income";
choices[3][3] = "everyone works in the family so there is more money";
answers[3] = choices[3][3];

questions[4] = "5) At number 5, what is meant by ‘trade union’?";
choices[4] = new Array();
choices[4][0] = "a group of volunteers who work in many areas";
choices[4][1] = "a social network for the colleagues ";
choices[4][2] = "a society of workers who protect and try to improve working conditions ";
answers[4] = choices[4][2];

questions[5] = "6) At number 5, what is meant by ‘shop steward’?";
choices[5] = new Array();
choices[5][0] = "a sales assistant in a shop";
choices[5][1] = "a steward who works in a shop";
choices[5][2] = "someone who has just joined a trade union";
choices[5][3] = "an elected trade union member who negotiates with management";
answers[5] = choices[5][3];

questions[6] = "7) At number 7, why did Cilla decide to go back to education? ";
choices[6] = new Array();
choices[6][0] = "she felt frustrated by the inequalities between the rich and the poor";
choices[6][1] = "she wanted to earn more money for the family income";
choices[6][2] = "she could not get a job anywhere without education ";
choices[6][3] = "she wanted to improve on herself and mature";
answers[6] = choices[6][0];

questions[7] = "8) At number 8, what is meant by ‘learning how to be a student’?";
choices[7] = new Array();
choices[7][0] = "learning how to have less money";
choices[7][1] = "learning how to become independent and mature";
choices[7][2] = "learning how to study and read and write";
choices[7][3] = "learning how to socialise with other students ";
answers[7] = choices[7][2];

questions[8] = "9) At number 9, what is meant by ‘knowledge is power’?";
choices[8] = new Array();
choices[8][0] = "the more education you have, the easier it is to find a job";
choices[8][1] = "knowledge is a weapon";
choices[8][2] = "everyone should learn in adult education";
choices[8][3] = "the more things you know the stronger you become";
answers[8] = choices[8][3];

questions[9] = "10) At number 10, what is meant by ‘I’ve gone freelance’?";
choices[9] = new Array();
choices[9][0] = "I work when I want for different companies and not for a single business";
choices[9][1] = "I have now retired and no longer work at all";
choices[9][2] = "I now only work in adult education";
choices[9][3] = "I now work for free";
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.";