// JavaScript Document

var myquotes = new Array(
	'club',
    'pen',
	'wright',
	'time',
	'ful',
	'er',
	'back',
	'ground',
	'safe',
	'girl',
	'able',
	'boy',
	'house',
	'mate',
	'cards',
	'thing',
	'games',
	'tape',
	'doh',
    'ing' // Leave the last quote without a comma at the end
);
  
function rotatequote() {
	thequote = myquotes.shift(); //Pull the top one
	myquotes.push(thequote); //And add it back to the end
 	document.getElementById('quotetext').innerHTML = thequote;
    // This rotates the quote every milliseconds.
    t=setTimeout("rotatequote()",100);
}