﻿window.onload = newQuote();

function newQuote(){
	// Create the quote array
	var quote = new Array(7);
	
	// Fill the quote array
	quote[0] = "A man's life is what his thoughts make of it. Marcus Aurelius";
	quote[1] = "Be the change that you want to see in the world. M.K. Gandhi";
	quote[2] = "Change takes but an instant. It's the resistance to change that can take a lifetime. Hebrew Proverb";
	quote[3] = "I love deadlines. I love the whooshing sound they make as they fly by. Douglas Adams";
	quote[4] = "Leadership is communicating to people their worth and potential so clearly that they come to see it in themselves. Stephen Covey";
	quote[5] = "All serious daring starts within. Eudora Welty";
	quote[6] = "Happiness is when what you think, what you say, and what you do are in harmony. Mohandas Gandhi";
	
	// Write the randomly picked quote from the array to the document
	thisQuote = quote[randInt(quote.length)];
	document.write('<div style="font-size: 10px;">' + thisQuote + '</div>');
}

// Return a random integer to the quote array based on the length of the array
function randInt(quoteLength){
	return Math.floor(Math.random() * quoteLength);
}