// JavaScript code for client-side scripts


// data for date display
   var months = new Array(12);
	months[0] = "January ";
	months[1] = "February ";
	months[2] = "March ";
	months[3] = "April ";
	months[4] = "May ";
	months[5] = "June ";
	months[6] = "July ";
	months[7] = "August ";
	months[8] = "September ";
	months[9] = "October ";
	months[10] = "November ";
	months[11] = "December ";
	var monno;
today = new Date()
monno = today.getMonth(); 


//    data for random quotes
      sayArray = new Array(23);
        sayArray[0] = "If it feels good, do it!";
        sayArray[1] = "If you want something, give something.";
        sayArray[2] = "Pain is just a sensation - you only think it hurts.";
        sayArray[3] = "Just do it!";
        sayArray[4] = "Don't say no. Go with the flow.";
        sayArray[5] = "Festina Lente.";
        sayArray[6] = "Anything is possible.";
        sayArray[7] = "Believe in the power of positive thinking.";
        sayArray[8] = "When you make a choice, you change the future.";
        sayArray[9] = "Life is a journey. Enjoy every moment.";
        sayArray[10] = "If there is a better solution ... find it!";
        sayArray[11] = "If you chase two rabbits, both will escape.";
        sayArray[12] = "You are here for a reason. Have fun discovering what it is.";
        sayArray[13] = "Don't wait for your ship to come in.  Swim out to it.";
        sayArray[14] = "When you make a wish or express a desire, you plant a seed.";
        sayArray[15] = "Watch your thoughts, for they become words...";
        sayArray[16] = "Cherish your yesterdays; dream your tomorrows; but live your todays.";  
        sayArray[17] = "Control the controllable."; 
        sayArray[18] = "Keep your face to the sunshine."; 
        sayArray[19] = "Never give in."; 
        sayArray[20] = "Stop .., look .., listen .., think .."; 
        sayArray[21] = "Think before you drink, before you drive."; 
        sayArray[22] = "All you need is love."; 

//    data for random questions
      questionArray = new Array(20);
        questionArray[0] = "What is the name of the school attended by Harry Potter?";
        questionArray[1] = "In which sport are the Curtis and Walker Cups contested?";
        questionArray[2] = "Which mountain is the second tallest in the world?";
        questionArray[3] = "Name all seven Deadly Sins?";
        questionArray[4] = "Who was the second President of the USA?";
        questionArray[5] = "What present was given on the 12th Day of Christmas?";
        questionArray[6] = "April Fool - which Zodiac sign covers 1st April?";
        questionArray[7] = "What is a Blue Moon?"
        questionArray[8] = "What is the State Capital of South Australia?";
        questionArray[9] = "Which planet was discovered in 1781?";
        questionArray[10] = "Complete the film title: Terminator 2 ...";
        questionArray[11] = "In which year was the Battle of Waterloo?";
        questionArray[12] = "Who was the father of Elizabeth I of England?";
        questionArray[13] = "What is the plural of ABACUS?";
        questionArray[14] = "Who is the author of The Eleventh Commandment?";
        questionArray[15] = "Who said: If I have seen further, it is by standing on the shoulders of giants."; 
        questionArray[16] = "Which river runs along the border between Argentina and Uruguay?";
        questionArray[17] = "What was the title of the first Indiana Jones film to be released?";
        questionArray[18] = "Who became the first man in space in 1961?";
        questionArray[19] = "What is the chemical symbol for Potassium?";


