<!-- hide script from old browsers

    quote = new Array();
    author = new Array();

   //------------------------------------------------------ EDIT THIS SECTION ONLY ----
    //Change this # to the total number of quotes you have
    numberOfQuotes = 14;


     // Add/Edit/Remove quotes as needed

    quote[0] = "When you see a good move, look for a better one."; 
    author[0] = "Emanuel Lasker";    

    quote[1] = "All I want to do, ever, is just play Chess.";
    author[1] = "Bobby Fischer";    

    quote[2] = "Strategy requires thought, tactics require observation.";
    author[2] = "Max Euwe";    

    quote[3] = "I don't believe in psychology. I believe in good moves.";
    author[3] = "Bobby Fischer";    

    quote[4] = "Life is like a game of Chess, changing with each move.";
    author[4] = "Chinese proverb";    

    quote[5] = "Some part of a mistake is always correct.";
    author[5] = "Savielly Tartakover";    

    quote[6] = "When in doubt... play Chess!";
    author[6] = "Tevis";    

    quote[7] = "I am the best player in the world and I am here to prove it.";
    author[7] = "Bobby Fischer";    

    quote[8] = "Every Chess master was once a beginner.";
    author[8] = "Chernev";    

    quote[9] = "Chess is the gymnasium of the mind.";
    author[9] = "Blaise Pascal";    

    quote[10] = "There just isn't enough televised Chess.";
    author[10] = "David Letterman";    

    quote[11] = "Chess is a sea in which a gnat may drink and an elephant may bathe.";
    author[11] = "Hindu proverb";    

    quote[12] = "Live, lose, and learn, by observing your opponent how to win.";
    author[12] = " Amber Steenbock";    

    quote[13] = "We like to think.";
    author[13] = "Gary Kasparov";    
   //------------------------------------------------------------------------------------------




    test = new Date()
    month = test.getMonth()
    month = (month * 1) + 1
    day = test.getDate()
    //year = test.getFullYear()
    //document.write(" ",month,"/",day,"/",year," ")

    dayNumber = day;
    numberOfQuotes = 5;

    if (month > 1) dayNumber += 31;    // Add January
    if (month > 2) dayNumber += 28;    // Add Feb
    if (month > 3) dayNumber += 31;   // Add Mar
    if (month > 4) dayNumber += 30;   // Add Apr
    if (month > 5) dayNumber += 31;   // Add May
    if (month > 6) dayNumber += 30;   // Add Jun
    if (month > 7) dayNumber += 31;   // Add Jul
    if (month > 8) dayNumber += 31;   // Add Aug
    if (month > 9) dayNumber += 30;     // Add Sep
    if (month > 10) dayNumber += 31;   // Add Oct
    if (month > 11) dayNumber += 30;   // Add Nov

    weekNumber = Math.ceil(dayNumber / 7);

    quoteNumber = (weekNumber % numberOfQuotes); 

    //-------------------------------------- Displays quote and author
    document.write('<b>');
    document.write('Weekly quote:');
    document.write('</b><BR>');

    document.write('<I>');
    document.write(quote[quoteNumber]);
    document.write('</I>');

    document.write('<BR> - ');
    document.write(author[quoteNumber]);

// end hiding script from old browsers -->










