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


questions[0] = "1) What new equipment has Steve received recently?";
choices[0] = new Array();
choices[0][0] = "fork lifts";
choices[0][1] = "computer";
choices[0][2] = "overhead projector";
answers[0] = choices[0][0];

questions[1] = "2) What did Steve make his employees do?";
choices[1] = new Array();
choices[1][0] = "attend workshops";
choices[1][1] = "get extra training on how to use the new fork lifts";
choices[1][2] = "work extra overtime";
answers[1] = choices[1][1];

questions[2] = "3) Who does Phillip need to speak to?";
choices[2] = new Array();
choices[2][0] = "Steve";
choices[2][1] = "Jane";
choices[2][2] = "Thomas";
answers[2] = choices[2][2];

questions[3] = "4) What does Steve think they should get them?";
choices[3] = new Array();
choices[3][0] = "telephones";
choices[3][1] = "mobile phones";
choices[3][2] = "pagers";
answers[3] = choices[3][2];

questions[4] = "5) What effect does giving a presentation have on Phillip?";
choices[4] = new Array();
choices[4][0] = "He enjoys them.";
choices[4][1] = "It makes him nervous.";
choices[4][2] = "It inspires him.";
answers[4] = choices[4][1];

questions[5] = "6) Developing an online database did not require a lot of outside help.";
choices[5] = new Array();
choices[5][0] = "True";
choices[5][1] = "False";
answers[5] = choices[5][0];

questions[6] = "7) Geoff had difficulty finding financial resources.";
choices[6] = new Array();
choices[6][0] = "True";
choices[6][1] = "False";
answers[6] = choices[6][1];

questions[7] = "8) Programmers were hired very inexpensively.";
choices[7] = new Array();
choices[7][0] = "True";
choices[7][1] = "False";
answers[7] = choices[7][0];

questions[8] = "9) Future financial rewards were a large part of employee motivation in the beginning.";
choices[8] = new Array();
choices[8][0] = "True";
choices[8][1] = "False";
answers[8] = choices[8][0];

questions[9] = "10) The site was not very popular after the first few weeks.";
choices[9] = new Array();
choices[9][0] = "True";
choices[9][1] = "False";
answers[9] = choices[9][1];


// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, can you do better?";
// response for getting over 50%
response[3] = "Nice one, 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] = "That was pretty poor!  Try again to improve!";
// response for getting 9% or less
response[7] = "Oh dear, I think you need to go back to school (or try again)!";