/* 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 old is the oldest living artist to top the UK album charts?";
choices[0] = new Array();
choices[0][0] = "90";
choices[0][1] = "92";
choices[0][2] = "94";
answers[0] = choices[0][1];

questions[1] = "2. Copenhagen is the capital of which country?";
choices[1] = new Array();
choices[1][0] = "Denmark";
choices[1][1] = "Norway";
choices[1][2] = "Sweden";
answers[1] = choices[1][0];

questions[2] = "3. What is the new speed record for a steam powered car?";
choices[2] = new Array();
choices[2][0] = "119 mph";
choices[2][1] = "129 mph";
choices[2][2] = "139 mph";
answers[2] = choices[2][2];

questions[3] = "4. How many camels are there thought to be in the world?";
choices[3] = new Array();
choices[3][0] = "10 million";
choices[3][1] = "20 million";
choices[3][2] = "40 million";
answers[3] = choices[3][1];

questions[4] = "5. How many stages of this year's Tour de France did Manx cyclist Mark Cavendish win?";
choices[4] = new Array();
choices[4][0] = "4";
choices[4][1] = "6";
choices[4][2] = "8";
answers[4] = choices[4][1];

questions[5] = "6. How long did it take quadriplegic Hilary Lester to sail solo around Britain?";
choices[5] = new Array();
choices[5][0] = "40 days";
choices[5][1] = "4 months";
choices[5][2] = "4 years";
answers[5] = choices[5][0];

questions[6] = "7. Which of the Jonas brothers has proposed to his girlfriend?";
choices[6] = new Array();
choices[6][0] = "Joe";
choices[6][1] = "Kevin";
choices[6][2] = "Nick";
answers[6] = choices[6][1];

questions[7] = "8. Bunchy top and bacterial wilt are diseases of which fruit?";
choices[7] = new Array();
choices[7][0] = "Apples";
choices[7][1] = "Bananas";
choices[7][2] = "Oranges";
answers[7] = choices[7][1];

questions[8] = "9. In which event did Jessica Ennis win a gold medal this summer?";
choices[8] = new Array();
choices[8][0] = "Pentathlon";
choices[8][1] = "Heptathlon";
choices[8][2] = "Decathlon";
answers[8] = choices[8][1];

questions[9] = "10. Which country has just changed to driving on the left?";
choices[9] = new Array();
choices[9][0] = "Samoa";
choices[9][1] = "Fiji";
choices[9][2] = "Tonga";
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.";



