function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(12)
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"
quote[6] = "Sing badly, if you must, but sing!"
quote[7] = "TIP"
quote[8] = "Sometimes I wonder if we don't take ourselves too seriously"
quote[9] = "If you believe in a cause, you must be willing to put yourself on the line for that cause"
quote[10] = "It's stasis that kills you off in the end, not ambition"
quote[11] = "We don't know who we are until we see what we can do"
quote[12] = "Definition of commitment: Doing the thing you said you would do long after the mood you set it in has left you."
author = new StringArray(12)
author[0] = "Webster's Collage Dictionary"
author[1] = "Jonathan Swift"
author[2] = "Martin Luther King Jr."
author[3] = "Janis Joplin"
author[4] = "John Lennon & Paul McCartney"
author[5] = "Mick Jagger & Keith Richards"
author[6] = "Chinese fortune cookie"
author[7] = "Add PDX Flyers to your Marketing Plan; your sellers will love your professionally made flyers and monthly delivery schedules."
author[8] = "Don Henely"
author[9] = "Adam Clayton - U2"
author[10] = "Bono"
author[11] = "Martha Grimes"
author[12] = "Success Magazine"

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( '<strong><i>' + theq + thequote + theq + " " + theauthor + '</i></strong>'  )
}



