<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var core = 0
var currentdate = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(6)
quote[0] = "Never be afraid to trust an unknown future to a known God."
quote[1] = "Christianity is a statement which, if false, is of no importance, and, if true, of infinite importance. The one thing it cannot be is moderately important."
quote[2] = "If we treat people as they are, we make them worse. If we treat people as they ought to be, we help them become what they are capable of becoming."
quote[3] = "Both Scripture and experience teach that it is we, not God, who determine the degree of intimacy with him that we enjoy. We are at this moment as close to God as we choose to be."
quote[4] = "The typical view of the Christian life is that it means being delivered from all adversity. But it actually means being delivered in adversity, which is something very different."
quote[5] = "Unless you and I remember the significance of Jesus on the cross and the eternal promise represented by His empty tomb, we are bound to be overwhelmed by the trials of this world."

author = new StringArray(6)
author[0] = "Corrie ten Boom"
author[1] = "C. S. Lewis"
author[2] = "Johann Wolfgang von Goethe"
author[3] = "J. Oswald Sanders"
author[4] = "Oswald Chambers"
author[5] = "Michael Lute Hurn"

var ran = 60/quote.length

currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore

var thequote = quote[core]
var theauthor = author[core]
var thebreak = ' - '
var theq = '"'
var theend = '.'

document.write(theq + thequote + theq + thebreak + theauthor + theend)

//-->