/* 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. Which butterfly is in serious decline in the UK?";
choices[0] = new Array();
choices[0][0] = "Meadow Brown";
choices[0][1] = "Peacock";
choices[0][2] = "Small Tortoiseshell";
answers[0] = choices[0][2];

questions[1] = "2. What sport is Dwain Chambers now playing?";
choices[1] = new Array();
choices[1][0] = "Football";
choices[1][1] = "Rugby League";
choices[1][2] = "Rugby Union";
answers[1] = choices[1][1];

questions[2] = "3. Which colour is thought to make you more likely to win?";
choices[2] = new Array();
choices[2][0] = "Blue";
choices[2][1] = "Green";
choices[2][2] = "Red";
answers[2] = choices[2][2];

questions[3] = "4. What is the Great Britain hockey team captain's other job?";
choices[3] = new Array();
choices[3][0] = "Lawyer";
choices[3][1] = "Policeman";
choices[3][2] = "Sports Teacher";
answers[3] = choices[3][2];

questions[4] = "5. Where are the manners police?";
choices[4] = new Array();
choices[4][0] = "China";
choices[4][1] = "Japan";
choices[4][2] = "South Korea";
answers[4] = choices[4][1];

questions[5] = "6. How tall is the world's tallest man?";
choices[5] = new Array();
choices[5][0] = "8 foot 5 inches";
choices[5][1] = "8 foot 7 inches";
choices[5][2] = "8 foot 9 inches";
answers[5] = choices[5][0];

questions[6] = "7. Benito Suarez was only 4 foot 6 inches tall. Which country did he rule?";
choices[6] = new Array();
choices[6][0] = "Guatemala";
choices[6][1] = "Mexico";
choices[6][2] = "Spain";
answers[6] = choices[6][1];

questions[7] = "8. What anniversary did the Scout Movement celebrate last year?";
choices[7] = new Array();
choices[7][0] = "50";
choices[7][1] = "100";
choices[7][2] = "150";
answers[7] = choices[7][1];

questions[8] = "9. Which animal is being blamed for the spread of T.B. in Wales?";
choices[8] = new Array();
choices[8][0] = "Badger";
choices[8][1] = "Fox";
choices[8][2] = "Rat";
answers[8] = choices[8][0];

questions[9] = "10. Which country is now thought to be the world's worst polluter?";
choices[9] = new Array();
choices[9][0] = "China";
choices[9][1] = "India";
choices[9][2] = "USA";
answers[9] = choices[9][0];





// 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.";


