/* 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. La Charrette was the smallest cinema in which country?";
choices[0] = new Array();
choices[0][0] = "England";
choices[0][1] = "Scotland";
choices[0][2] = "Wales";
answers[0] = choices[0][2];

questions[1] = "2. Which English county was at the centre of an earthquake in February 2008?";
choices[1] = new Array();
choices[1][0] = "Essex";
choices[1][1] = "Lincolnshire";
choices[1][2] = "Somerset";
answers[1] = choices[1][1];

questions[2] = "3. About how many of the devices know as the Mosquito are in use in the UK?";
choices[2] = new Array();
choices[2][0] = "35";
choices[2][1] = "350";
choices[2][2] = "3500";
answers[2] = choices[2][2];

questions[3] = "4. What is the capital of the Isle of Man?";
choices[3] = new Array();
choices[3][0] = "Douglas";
choices[3][1] = "Peel";
choices[3][2] = "Ramsey";
answers[3] = choices[3][0];

questions[4] = "5. Pyongyang is the capital of which country?";
choices[4] = new Array();
choices[4][0] = "North Korea";
choices[4][1] = "Singapore";
choices[4][2] = "South Korea";
answers[4] = choices[4][0];

questions[5] = "6. Which Chinese year started in February 2008?";
choices[5] = new Array();
choices[5][0] = "The Year of the Dragon";
choices[5][1] = "The Year of the Goat";
choices[5][2] = "The Year of the Rat";
answers[5] = choices[5][2];

questions[6] = "7. What colour of Smarties were not made between 2006 and 2008?";
choices[6] = new Array();
choices[6][0] = "Blue";
choices[6][1] = "Orange";
choices[6][2] = "Red";
answers[6] = choices[6][0];

questions[7] = "8. In which country is the Island of Svalbard?";
choices[7] = new Array();
choices[7][0] = "Iceland";
choices[7][1] = "Norway";
choices[7][2] = "Sweden";
answers[7] = choices[7][1];

questions[8] = "9. How high will passengers go in Virgin Galactic's SpaceShipTwo?";
choices[8] = new Array();
choices[8][0] = "7 miles";
choices[8][1] = "17 miles";
choices[8][2] = "70 miles";
answers[8] = choices[8][2];

questions[9] = "10. Where does the Harlequin Ladybird come from?";
choices[9] = new Array();
choices[9][0] = "Africa";
choices[9][1] = "Asia";
choices[9][2] = "South America";
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.";



