// JavaScript Document
<!--
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] = "Jacob's Ladder"
quote[1] = "Jacob's Ladder"
quote[2] = "Jacob's Ladder"
quote[3] = "Jacob's Ladder"
quote[4] = "Jacob's Ladder"
quote[5] = "Jacob's Ladder"

author = new StringArray(6)
author[0] = "The Easy Climb To Peak Condition"
author[1] = "The Total Body Excerciser"
author[2] = "Peak Aerobic Conditioning"
author[3] = "Developed For Professionals"
author[4] = "The patented treadmill climber"
author[5] = "Adjusts to suit your speed."

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)

//-->
