

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(4)
quote[0] = "Welcome to The EDI Center for education, resources, and jobs."
quote[1] = "The EDI Center Provides Up to Date Information About the Industry"
quote[2] = "The EDI Center for education, resources, and jobs!"
quote[3] = "Offering EDI education without a sales pitch!"

author = new StringArray(4)
author[0] = " "
author[1] = " "
author[2] = " "
author[3] = " "


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>'  )
}


