// A list of quotes:
var quotes = new Array();
		quotes[0] = "&quot;Don't use words too big for the subject. Don't say 'infinitely' when you mean 'very'; otherwise you'll have no word left when you want to talk about something really infinite.&quot;<br>-- C. S. Lewis";
		quotes[1] = "No passion in the world is equal to the passion to alter someone else's draft.&quot;<br>-- H. G. Wells"; 
		quotes[2] = "&quot;There is no failure. Only feedback.&quot;<br>-- Unknown"; 
		quotes[3] = "&quot;The sculptor produces the beautiful statue by chipping away such parts of the marble block as are not needed - it is a process of elimination.&quot;<br>-- Elbert Hubbard"; 
		quotes[4] = "&quot;The ability to simplify means to eliminate the unnecessary so that the necessary may speak.&quot;<br>-- Hans Hofmann"; 
		quotes[5] = "&quot;Don't wait until everything is just right. It will never be perfect. There will always be challenges, obstacles and less than perfect conditions. So what. Get started now. With each step you take, you will grow stronger and stronger, more and more skilled, more and more self-confident and more and more successful.&quot;<br>-- Mark Victor Hansen";
		quotes[6] = "&quot;Everything should be made as simple as possible, but not simpler.&quot;<br>-- Albert Einstein";
		quotes[7] = "&quot;I love deadlines. I like the whooshing sound they make as they fly by.&quot;<br>-- Douglas Adams";
		quotes[8] = "&quot;Writing is an exploration. You start from nothing and learn as you go.&quot;<br>-- E. L. Doctorow";
		quotes[9] = "&quot;Nobody can go back and start a new beginning, but anyone can start today and make a new ending.&quot;<br>-- Maria Robinson";
		quotes[10] = "&quot;Substitute 'damn' every time you're inclined to write 'very'; your editor will delete it and the writing will be just as it should be.&quot;<br>--Mark Twain.";
		quotes[11] = "&quot;When your work speaks for itself, don't interrupt.&quot;<br>-- Henry J. Kaiser";
		quotes[12] = "&quot;I have made this letter longer than usual, because I lack the time to make it short.&quot;<br>-- Blaise Pascal";
		quotes[13] = "&quot;The longest way round is usually the shortest way home, and the one truly reliable shortcut in writing is to choose words that are strong and sure-footed to carry the reader on his way.&quot;<br>-- E. B. White";
		quotes[14] = "&quot;The best writing is rewriting.&quot;<br>-- E. B. White";
		quotes[15] = "&quot;One thing you can't recycle is wasted time.&quot;<br>-- Unknown";
		
// A list of image urls 
// (same number of image urls as quotes and in matching sequence of image to quote):
var images = new Array();
		images[0] = "";
		images[1] = "";
		images[2] = "";
		images[3] = "";
		images[4] = "";
		images[5] = "";
		
// When the page loads:
// 1) a new random index is generated:
var randIndex = Math.floor(Math.random() * quotes.length);

// 2) We reference the quote at the randomIndex:
var randQuote = quotes[randIndex];

// 3) We also reference the image url at the same random index:
var randImage = images[randIndex];
		
