

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(10)
quote[0] = "Thinking is the hardest work there is, which is probably the reason why so few engage in it."
quote[1] = "Vision is the art of seeing things invisible."
quote[2] = "Drive thy business or it will drive thee."
quote[3] = "Businessmen are the symbol of a free society."
quote[4] = "Good hours, excellent pay, fun place to work, paid training, mean boss. Oh well, four out of five isn't bad."
quote[5] = "The great thing about a notebook computer is that no matter how much you stuff into it, it doesn't get bigger or heavier."
quote[6] = "I do not fear computers. I fear the lack of them."
quote[7] = "Insanity: doing the same thing over and over again and expecting different results."
quote[8] = "But the fact that some geniuses were laughed at does not imply that all who are laughed at are geniuses. They laughed at Columbus, they laughed at Fulton, they laughed at the Wright brothers. But they also laughed at Bozo the Clown."
quote[9] = "Genius is one per cent inspiration, ninety-nine per cent perspiration."
quote[10] = "Opportunities are usually disguised as hard work, so most people don't recognize them."

author = new StringArray(10)
author[0] = " - Henry Ford"
author[1] = " - Jonathan Swift"
author[2] = " - Benjamin Franklin (1706 - 1790)"
author[3] = " - Ayn Rand"
author[4] = " - Help Wanted Ad, PA newspaper, 1994"
author[5] = " - Bill Gates (1955 - ), Business @ The Speed of Thought"
author[6] = " - Isaac Asimov (1920 - 1992)"
author[7] = " - Albert Einstein (1879 - 1955)"
author[8] = " - Carl Sagan (1934 - 1996)"
author[9] = " - Thomas A. Edison (1847 - 1931), Harper's Monthly, 1932"
author[10] = " - Ann Landers (1918 - 2002)"

function writeQuote()
{
var now = new Date()
var sec = now.getSeconds()
var core = sec % quote.length

var thequote = quote[core]
var theauthor = author[core]
var theq = '&quot;'
var theend = ''


document.write( '<i>' + theq + thequote + theq + " " + theauthor + '</i>'  )
}


