

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(2)
quote[0] = "TAA publishes information useful to its members who are agents, vendors and end-users that distribute, provide or use telecom & other business services."
quote[1] = "TAA publishes information useful to its members who are agents, vendors and end-users that distribute, provide or use telecom & other business services."

author = new StringArray(8)
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>'  )
}


