

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(1)
quote[0] = " "
quote[1] = " "
quote[2] = " "  
quote[3] = " "
quote[4] = " "


author = new StringArray(1)
author[0] = " "
author[1] = " "
author[2] = " "
author[3] = " "
author[4] = " "


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 = ''



}


