/* 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 long did Nelson Mandela spend in prison?";
choices[0] = new Array();
choices[0][0] = "7 years";
choices[0][1] = "17 years";
choices[0][2] = "27 years";
answers[0] = choices[0][2];

questions[1] = "2. How many tigers are there thought to be left in the wild?";
choices[1] = new Array();
choices[1][0] = "320";
choices[1][1] = "3,200";
choices[1][2] = "32,000";
answers[1] = choices[1][1];

questions[2] = "3. How much was an adult cheese ration per week in the Second World War?";
choices[2] = new Array();
choices[2][0] = "75g";
choices[2][1] = "175g";
choices[2][2] = "1750g";
answers[2] = choices[2][0];

questions[3] = "4. Where did the Saqqaqs live over 4,000 years ago?";
choices[3] = new Array();
choices[3][0] = "Antarctica";
choices[3][1] = "Australia";
choices[3][2] = "Greenland";
answers[3] = choices[3][2];

questions[4] = "5. What year was the first web page created?";
choices[4] = new Array();
choices[4][0] = "1981";
choices[4][1] = "1991";
choices[4][2] = "2001";
answers[4] = choices[4][1];

questions[5] = "6. What do scientists now think Tutankhamun may have died from?";
choices[5] = new Array();
choices[5][0] = "Malaria";
choices[5][1] = "Typhoid";
choices[5][2] = "Yellow Fever";
answers[5] = choices[5][0];

questions[6] = "7. How much did the first comic to feature Batman sell for in February?";
choices[6] = new Array();
choices[6][0] = "£6,500";
choices[6][1] = "£65,000,";
choices[6][2] = "£655,000";
answers[6] = choices[6][2];

questions[7] = "8. How old is the Haiti fundraiser, Charlie Simpson?";
choices[7] = new Array();
choices[7][0] = "7";
choices[7][1] = "17";
choices[7][2] = "27";
answers[7] = choices[7][0];

questions[8] = "9. The 14th February 2010 was the start of which Chinese New Year";
choices[8] = new Array();
choices[8][0] = "Monkey";
choices[8][1] = "Snake";
choices[8][2] = "Tiger";
answers[8] = choices[8][2];

questions[9] = "10. In which year was the first issue of The Newspaper published?";
choices[9] = new Array();
choices[9][0] = "1991";
choices[9][1] = "2000";
choices[9][2] = "2001";
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.";




