function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}
quote = new StringArray(6)
quote[0] = "Networking; the informal sharing of information and services among individuals linked by a common interest"
quote[1] = "Vision is the art of seeing things invisible."
quote[2] = "The ultimate measure of a man is not where he stands in moments of comfort and convenience, but where he stands at times of challenge and controversy."
quote[3] = "Don't compromise yourself. You are all you've got."
quote[4] = "I am he, as you are me, and we are all together. "
quote[5] = "You can't always get what you want, but if you try sometimes, you just might find, you get what you need."
author = new StringArray(6)
author[0] = "Webster's College Dictionary"
author[1] = "Jonathan Swift"
author[2] = "Martin Luther King Jr."
author[3] = "Janis Joplin"
author[4] = "John Lennon & Paul McCartney"
author[5] = "Mick Jager & Keith Richards"

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>'  )
}

