/* 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. In which year did Sir Edmund Hillary climb Mount Everest?";
choices[0] = new Array();
choices[0][0] = "1951";
choices[0][1] = "1953";
choices[0][2] = "1955";
answers[0] = choices[0][1];

questions[1] = "2. In which month of 2008 is the Chinese New Year?";
choices[1] = new Array();
choices[1][0] = "January";
choices[1][1] = "February";
choices[1][2] = "March";
answers[1] = choices[1][1];

questions[2] = "3. How old was Jacqueline Wilson when her first novel was published?";
choices[2] = new Array();
choices[2][0] = "22";
choices[2][1] = "26";
choices[2][2] = "28";
answers[2] = choices[2][0];

questions[3] = "4. In which country has the world's cheapest car just been launched?";
choices[3] = new Array();
choices[3][0] = "Burma";
choices[3][1] = "China";
choices[3][2] = "India";
answers[3] = choices[3][2];

questions[4] = "5. What new colour cricket ball is being test this winter?";
choices[4] = new Array();
choices[4][0] = "Pink";
choices[4][1] = "Yellow";
choices[4][2] = "Orange";
answers[4] = choices[4][0];

questions[5] = "6. Who recently won the BBC's Young Sports Personality of the Year award?";
choices[5] = new Array();
choices[5][0] = "Jane Harris";
choices[5][1] = "Paul Drinkhall";
choices[5][2] = "Thomas Daley";
answers[5] = choices[5][2];

questions[6] = "7. Which British city is the first to be chosen to host a beach volleyball event?";
choices[6] = new Array();
choices[6][0] = "Birmingham";
choices[6][1] = "Brighton";
choices[6][2] = "Burnley";
answers[6] = choices[6][1];

questions[7] = "8. Which country has decided to plant a tree every time a child is born?";
choices[7] = new Array();
choices[7][0] = "Wales";
choices[7][1] = "Scotland";
choices[7][2] = "England";
answers[7] = choices[7][0];

questions[8] = "9. How many GCSEs does Wayne Rooney's girlfriend have?";
choices[8] = new Array();
choices[8][0] = "5";
choices[8][1] = "8";
choices[8][2] = "10";
answers[8] = choices[8][2];

questions[9] = "10. In which month this year will the USA elect a new president?";
choices[9] = new Array();
choices[9][0] = "July";
choices[9][1] = "September";
choices[9][2] = "November";
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.";



