function RandomQuote(){
	var now = new Date()
	var secs = now.getSeconds()
	var num_of_quotes = 20
	var quote = new Array(19)

	quote[0] = "Extreme Blogging!"
	quote[1] = "Mmm... Pizza..."
	quote[2] = "Suck it, Trebek!"
	quote[3] = "Mmm... Brandie..."
	quote[4] = "I don't want to go among mad people..."
	quote[5] = "Cram it!"
	quote[6] = "Try it with milk!"
	quote[7] = "Warning: May cause thinking."
	quote[8] = "Use only as directed."
	quote[9] = "If symptoms persist, call a doctor."
	quote[10] = "It's like an Andy Warhol Movie, only it's kinda weird."
	quote[11] = "Spoooooon!"
	quote[12] = "Damn, it feels good to be a gamer."
	quote[13] = "PAK CHOOIE UNF"
	quote[14] = "What you say<i>!!</i>"
	quote[15] = "Get in the jail!"
	quote[16] = "What's that?"
	quote[17] = "Who's Your Daddy?"
	quote[17] = "Cwose Enough!"
	quote[18] = "With Kung-Fu Action Grip."
	quote[19] = "Offer void in Utah."

	document.write(quote[secs%num_of_quotes])
}
