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

questions[0] = "1) Why is the new equipment needed?";
choices[0] = new Array();
choices[0][0] = "to speed up assembly";
choices[0][1] = "to improve manufacturing";
choices[0][2] = "to increase capacity";
answers[0] = choices[0][0];

questions[1] = "2) Who was responsible for assembly in the past?";
choices[1] = new Array();
choices[1][0] = "Pots and Cots";
choices[1][1] = "outsourced companies";
choices[1][2] = "Phillip";
answers[1] = choices[1][1];

questions[2] = "3) What type of products are going to be assembled?";
choices[2] = new Array();
choices[2][0] = "household goods";
choices[2][1] = "electronic equipment";
choices[2][2] = "furniture";
answers[2] = choices[2][2];

questions[3] = "4) Why is proper assembly so important?";
choices[3] = new Array();
choices[3][0] = "50% of returned goods are returned due to improper assembly";
choices[3][1] = "It is important the goods are well-presented.";
choices[3][2] = "Because of storage reasons.";
answers[3] = choices[3][0];

questions[4] = "5) What will the responsibility of the new employees be?";
choices[4] = new Array();
choices[4][0] = "using the new fork lifts";
choices[4][1] = "improving efficiency";
choices[4][2] = "assembling according to manufacturer's specifications";
answers[4] = choices[4][2];

questions[5] = "6) How old is the typical Book-by-Us.com customer?";
choices[5] = new Array();
choices[5][0] = "Under 20";
choices[5][1] = "Under 30";
choices[5][2] = "Under 40";
answers[5] = choices[5][2];

questions[6] = "7) Which statement best describes a typical Book-by-Us.com customer?";
choices[6] = new Array();
choices[6][0] = "A business professional who rarely travels, but likes first class.";
choices[6][1] = "A business professional who often travels, but needs to fly economically.";
choices[6][2] = "A business professional who often travels, but doesn't need to worry about air fares.";
answers[6] = choices[6][1];

questions[7] = "8) Which phrase best describes Helping Hands Inc?";
choices[7] = new Array();
choices[7][0] = "It's a manufacturing company.";
choices[7][1] = "It's a service company.";
choices[7][2] = "It's a financial goods company.";
answers[7] = choices[7][1];

questions[8] = "9) Which types of service does Helping Hands Inc. provide?";
choices[8] = new Array();
choices[8][0] = "It assembles products.";
choices[8][1] = "It manufactures products.";
choices[8][2] = "It provides consulting services.";
answers[8] = choices[8][0];

questions[9] = "10) .... who was employed by our company - is an example of";
choices[9] = new Array();
choices[9][0] = "A relative, independent clause";
choices[9][1] = "A relative, dependent clause";
choices[9][2] = "An independent clause";
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)!";
