/* 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. That date is Red Hand Day 2009?";
choices[0] = new Array();
choices[0][0] = "5th February";
choices[0][1] = "12th February";
choices[0][2] = "19th February";
answers[0] = choices[0][1];

questions[1] = "2. What is the world's population expected to be by 2050?";
choices[1] = new Array();
choices[1][0] = "five billion";
choices[1][1] = "seven billion";
choices[1][2] = "nine billion";
answers[1] = choices[1][2];

questions[2] = "3. The Great Barrier Reef is off the coast of which country?";
choices[2] = new Array();
choices[2][0] = "Australia";
choices[2][1] = "Canada";
choices[2][2] = "South Africa";
answers[2] = choices[2][0];

questions[3] = "4. In which country was Louis Braille born?";
choices[3] = new Array();
choices[3][0] = "France";
choices[3][1] = "Italy";
choices[3][2] = "Spain";
answers[3] = choices[3][0];

questions[4] = "5. In which English county are there plans to build a huge indoor ski slope?";
choices[4] = new Array();
choices[4][0] = "Essex";
choices[4][1] = "Kent";
choices[4][2] = "Suffolk";
answers[4] = choices[4][2];

questions[5] = "6. Which coin will have a new design to celebrate London 2012?";
choices[5] = new Array();
choices[5][0] = "Two pence";
choices[5][1] = "Fifty pence";
choices[5][2] = "Two pound";
answers[5] = choices[5][1];

questions[6] = "7. In which country is Mount Everest?";
choices[6] = new Array();
choices[6][0] = "China";
choices[6][1] = "Nepal";
choices[6][2] = "Switzerland";
answers[6] = choices[6][1];

questions[7] = "8. Which rugby union club does Danny Care play for?";
choices[7] = new Array();
choices[7][0] = "Bath";
choices[7][1] = "Harlequins";
choices[7][2] = "Wasps";
answers[7] = choices[7][1];

questions[8] = "9. What was the first computer mouse made from?";
choices[8] = new Array();
choices[8][0] = "Glass";
choices[8][1] = "Plastic";
choices[8][2] = "Wood";
answers[8] = choices[8][2];

questions[9] = "10. What animals have been causing a lot of damage in the Forest of Dean?";
choices[9] = new Array();
choices[9][0] = "Mice";
choices[9][1] = "Rabbits";
choices[9][2] = "Wild Boar";
answers[9] = choices[9][2];





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



