

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(5)
quote[0] = "Find your Action Photos by viewing the list on the right hand side of this page"
quote[1] = "Have an Event coming up?  Need a Photographer?  Email us for availability."
quote[2] = "Our ON-SITE computer viewing stations allow you to view photos at your event!"
quote[3] = "Have an Event coming up?  Need a Photographer?  Email us for availability."
quote[4] = "Photos are available to view minutes after a performance!"


author = new StringArray(5)
author[0] = ""
author[1] = ""



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>'  )
}

