/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: James Crooke :: http://www.cj-design.com 
Adapted by Phil Wood */

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

// To add more questions, just follow the format below.

questions[0] = "1. How long did did it take Mike Pelham to sail solo round the world?";
choices[0] = new Array();
choices[0][0] = "6 months";
choices[0][1] = "9 months";
choices[0][2] = "a year";
answers[0] = choices[0][1];

questions[1] = "2. A zebra was spotted cleaning the teeth of a hippo at a zoo in which country?";
choices[1] = new Array();
choices[1][0] = "Austria";
choices[1][1] = "France";
choices[1][2] = "Switzerland";
answers[1] = choices[1][2];

questions[2] = "3. How long did the battery last on the first handheld mobile phone?";
choices[2] = new Array();
choices[2][0] = "20 seconds";
choices[2][1] = "20 minutes";
choices[2][2] = "20 days";
answers[2] = choices[2][1];

questions[3] = "4.How long is Hadrian's Wall in Roman miles?";
choices[3] = new Array();
choices[3][0] = "40";
choices[3][1] = "60";
choices[3][2] = "80";
answers[3] = choices[3][2];

questions[4] = "5. The world's hottest chilli is how many times hotter than Tabasco sauce?";
choices[4] = new Array();
choices[4][0] = "2";
choices[4][1] = "20";
choices[4][2] = "200";
answers[4] = choices[4][2];

questions[5] = "6. How many MPs are there in the House of Commons?";
choices[5] = new Array();
choices[5][0] = "350";
choices[5][1] = "450";
choices[5][2] = "650";
answers[5] = choices[5][2];

questions[6] = "7. What colour are the benches in the House of Commons?";
choices[6] = new Array();
choices[6][0] = "green";
choices[6][1] = "red";
choices[6][2] = "brown";
answers[6] = choices[6][0];

questions[7] = "8. In what year did the American Civil War start?";
choices[7] = new Array();
choices[7][0] = "1761";
choices[7][1] = "1861";
choices[7][2] = "1961";
answers[7] = choices[7][1];

questions[8] = "9. Where is the Twenty20 Cricket World Cup being held in 2010";
choices[8] = new Array();
choices[8][0] = "Australia";
choices[8][1] = "South Africa";
choices[8][2] = "The West Indies";
answers[8] = choices[8][2];

questions[9] = "10. Which of these countries is NOT playing in the 2010 Football World Cup finals?";
choices[9] = new Array();
choices[9][0] = "Japan";
choices[9][1] = "Peru";
choices[9][2] = "Serbia";
answers[9] = choices[9][1];





// response for getting 100%
response[0] = "Congratulations!\nYou've certainly read your Newspaper.";
// response for getting 70% or more
response[1] = "A good try.\nHave another read of The Newspaper and see if you can get them all right next time.";
// response for getting 40% or more
response[2] = "It's time to get out your copy of The Newspaper and read it again.";
// response for getting less than 40%
response[3] = "Have you read The Newspaper?\nMaybe you should read it again.";




