/* 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 country is the world's largest exporter of beef?";
choices[0] = new Array();
choices[0][0] = "Brazil";
choices[0][1] = "Scotland";
choices[0][2] = "USA";
answers[0] = choices[0][0];

questions[1] = "2. How long ago did Henry VIII ascend to the throne of England?";
choices[1] = new Array();
choices[1][0] = "300";
choices[1][1] = "400";
choices[1][2] = "500";
answers[1] = choices[1][2];

questions[2] = "3. Wayne Allwine was the voice of which famous cartoon character?";
choices[2] = new Array();
choices[2][0] = "Bart Simpson";
choices[2][1] = "Bugs Bunny";
choices[2][2] = "Mickey Mouse";
answers[2] = choices[2][2];

questions[3] = "4. Which African country produces a food dish called 'vampire'?";
choices[3] = new Array();
choices[3][0] = "Chad";
choices[3][1] = "Kenya";
choices[3][2] = "Nigeria";
answers[3] = choices[3][0];

questions[4] = "5. Who is the Prime Minister of Canada?";
choices[4] = new Array();
choices[4][0] = "Gordon Brown";
choices[4][1] = "Stephen Harper";
choices[4][2] = "Nicolas Sarkozy";
answers[4] = choices[4][1];

questions[5] = "6. The E3 show is where the hottest new games are first shown. Where was it held this year?";
choices[5] = new Array();
choices[5][0] = "Los Angeles";
choices[5][1] = "New York";
choices[5][2] = "San Francisco";
answers[5] = choices[5][0];

questions[6] = "7. In which country was Thomas Paine born?";
choices[6] = new Array();
choices[6][0] = "Canada";
choices[6][1] = "England";
choices[6][2] = "USA";
answers[6] = choices[6][1];

questions[7] = "8. Who was the SECOND man to walk on the Moon?";
choices[7] = new Array();
choices[7][0] = "Neil Armstrong";
choices[7][1] = "Edwin 'Buzz' Aldrin";
choices[7][2] = "Michael Collins";
answers[7] = choices[7][1];

questions[8] = "9. Which bird has been seen using tools?";
choices[8] = new Array();
choices[8][0] = "Blackbirds";
choices[8][1] = "Magpies";
choices[8][2] = "Rooks";
answers[8] = choices[8][2];

questions[9] = "10. Children are being forced to harvest which crop in Uzbekistan?";
choices[9] = new Array();
choices[9][0] = "Coffee";
choices[9][1] = "Cotton";
choices[9][2] = "Corn";
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.";



