/* 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. How much money do we spend on toys from China each year?";
choices[0] = new Array();
choices[0][0] = "£1 million";
choices[0][1] = "£100 million";
choices[0][2] = "£1 billion";
answers[0] = choices[0][2];

questions[1] = "2. What is the current age of criminal responsibility in England, Wales and Northern Ireland?";
choices[1] = new Array();
choices[1][0] = "8";
choices[1][1] = "10";
choices[1][2] = "12";
answers[1] = choices[1][1];

questions[2] = "3. Which of these animals was the Yangtze river dolphin originally related to?";
choices[2] = new Array();
choices[2][0] = "Shark";
choices[2][1] = "Panda";
choices[2][2] = "Whale";
answers[2] = choices[2][2];

questions[3] = "4. What nationality was the inventor of the Rubik's cube?";
choices[3] = new Array();
choices[3][0] = "Hungarian";
choices[3][1] = "Greek";
choices[3][2] = "Italian";
answers[3] = choices[3][0];

questions[4] = "5. How fast was the fastest running dinosaur?";
choices[4] = new Array();
choices[4][0] = "30 mph";
choices[4][1] = "40 mph";
choices[4][2] = "50 mph";
answers[4] = choices[4][1];

questions[5] = "6. How many teeth does a killer whale have?";
choices[5] = new Array();
choices[5][0] = "20 to 23";
choices[5][1] = "40 to 56";
choices[5][2] = "60 to 74";
answers[5] = choices[5][1];

questions[6] = "7. What is the capital of Peru?";
choices[6] = new Array();
choices[6][0] = "Lima";
choices[6][1] = "La Paz";
choices[6][2] = "Santiago";
answers[6] = choices[6][0];

questions[7] = "8.Which country broke the world record for the number of surfers riding the same wave?";
choices[7] = new Array();
choices[7][0] = "England";
choices[7][1] = "Australia";
choices[7][2] = "Brazil";
answers[7] = choices[7][2];

questions[8] = "9. What are Oscar Pistorius's blades made from?";
choices[8] = new Array();
choices[8][0] = "Stainless Steel";
choices[8][1] = "Carbon Fibre";
choices[8][2] = "Plywood";
answers[8] = choices[8][1];

questions[9] = "10. What sport is twenty20?";
choices[9] = new Array();
choices[9][0] = "Rugby";
choices[9][1] = "Hockey";
choices[9][2] = "Cricket";
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.";



