// JavaScript Document
var quotes = new Array();
quotes[0] = "&quot;Diligence is the basis of wealth,<br />and thrift the source of riches.<br />Diligence is a priceless treasure;<br />prudence a protective charm.&quot;<br />&nbsp;&nbsp;&nbsp;-- Chinese proverbs";
quotes[1] = "&quot;Nothing astonishes men so much as common sense and plain dealing.&quot;<br />&nbsp;&nbsp;&nbsp;-- Ralph Waldo Emerson";
quotes[2] = "&quot;I find the great thing in this world is not so much where we stand, as in what direction we are moving: we must sail sometimes with the wind and sometimes against it &shy; but we must sail, and not drift, nor lie at anchor.&quot;<br />&nbsp;&nbsp;&nbsp;-- Oliver Wendell Holmes";


function getQuote()
{
	
	var rand = Math.floor( Math.random() * quotes.length );
	
	return quotes[ rand ];
}




function loadRandomImage()
{
	var rand = Math.floor( Math.random() * 9 ) + 1;
	
	document["header-image"].src = "images/index-header-"+rand+".jpg";
}



