var core = 0
var currentdate = 0
function StringArray (n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
quote = new StringArray(20)
quote[0] = "Non-Euclidean Heavy Meta."
quote[1] = "Tonight, Matthew, I am become Death, Destroyer of Worlds."
quote[2] = "Powering Down."
quote[3] = "Hairy Bears In Woodland Defecation Shocker."
quote[4] = "Acceptable system fugues, for your observation."
quote[5] = "When the great are evil, we are at our most real."
quote[6] = "Acoustic Cyberpunks?"
quote[7] = "Reality will be unavailable today, due to existential maintenance work."
quote[8] = "(Batteries Not Invented)"
quote[9] = "Kiss My Fundament."
quote[10] = "'Hey Ho' Says Aleister Crowley."
quote[11] = "Unconscious Primal Pout Gatherers."
quote[12] = "Cease your house! Sound hell the nation!"
quote[13] = "This Space Intentionally Left Blank."
quote[14] = "Prophecy Is Theft."
quote[15] = "Galvanizing Conspiracy Trackers."
quote[16] = "Store Merchandise, Old Matter."
quote[17] = "Rock & Roll Will Always Let You Down."
quote[18] = "No Common Zens."
quote[19] = "Nothing You Pay Money For Can Ever Be Subversive."
var ran = 60/quote.length
currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore
var thequote = quote[core]
document.write(thequote)

