

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(5)
quote[0] = "People <big>pushing forward</big> into a new relationship with God and one another to create strong communities."
quote[1] = "People <big>pushing forward</big> into a new relationship with God and one another to create strong communities."
quote[2] = "People <big>pushing forward</big> into a new relationship with God and one another to create strong communities."
quote[3] = "People <big>pushing forward</big> into a new relationship with God and one another to create strong communities."
quote[4] = "People <big>pushing forward</big> into a new relationship with God and one another to create strong communities."

author = new StringArray(5)
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 = ''


document.write( '<center><b>' + theq + thequote + theq + " " + theauthor + '</b></center>'  )
}


