/* 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. In which English county is the Blind Football World Cup being held in August?";
choices[0] = new Array();
choices[0][0] = "Hampshire";
choices[0][1] = "Herefordshire";
choices[0][2] = "Hertfordshire";
answers[0] = choices[0][1];

questions[1] = "2. Which type of shark can you swim with in Cornwall??";
choices[1] = new Array();
choices[1][0] = "Basking shark";
choices[1][1] = "Great white shark";
choices[1][2] = "Tiger shark";
answers[1] = choices[1][0];

questions[2] = "3. How many laps are there in the British Grand Prix?";
choices[2] = new Array();
choices[2][0] = "48";
choices[2][1] = "52";
choices[2][2] = "56";
answers[2] = choices[2][1];

questions[3] = "4. Where was a hotel built out of rubbish?";
choices[3] = new Array();
choices[3][0] = "Madrid";
choices[3][1] = "Paris";
choices[3][2] = "Rome";
answers[3] = choices[3][2];

questions[4] = "5. What does a herpetologist study?";
choices[4] = new Array();
choices[4][0] = "Cockroaches";
choices[4][1] = "Sharks";
choices[4][2] = "Snakes";
answers[4] = choices[4][2];

questions[5] = "6. How marathons did Rosie Swale-Pope recently run on consecutive days?";
choices[5] = new Array();
choices[5][0] = "7";
choices[5][1] = "17";
choices[5][2] = "27";
answers[5] = choices[5][2];

questions[6] = "7. What is the UK population expected to reach by the year 2030";
choices[6] = new Array();
choices[6][0] = "70 million";
choices[6][1] = "75 million";
choices[6][2] = "80 million";
answers[6] = choices[6][0];

questions[7] = "8. In which country is the restaurant that has recently been voted the best in the world?";
choices[7] = new Array();
choices[7][0] = "Finland";
choices[7][1] = "Norway";
choices[7][2] = "Sweden";
answers[7] = choices[7][2];

questions[8] = "9. Which sport does Laye White play?";
choices[8] = new Array();
choices[8][0] = "Cricket";
choices[8][1] = "Football";
choices[8][2] = "Tennis";
answers[8] = choices[8][0];

questions[9] = "10. Which South American country has Lily Allen recently visited";
choices[9] = new Array();
choices[9][0] = "Bolivia";
choices[9][1] = "Brazil";
choices[9][2] = "Peru";
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.";




