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] = "Everybody Shut Up... Listen to the Brand!"
quote[1] = "Tonight, Matthew, I am become Death, Destroyer of Worlds."
quote[2] = "Powering Down."
quote[3] = "Can Help Slimming Only As Part Of A Calorie Controlled Diet."
quote[4] = "If you can't be bad, be careless."
quote[5] = "Paradoxical Sinatra Breasts!"
quote[6] = "Acoustic Cyberpunks."
quote[7] = "Apparition of the Face of Mirrorkill in Arse of Stuffed Leopard!"
quote[8] = "(Batteries Not Invented)"
quote[9] = "Kiss My Fundament."
quote[10] = "Good For You!"
quote[11] = "Unconscious Primal Pout Gatherers."
quote[12] = "Eco-Acoustic Stomp Folk"
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)
