function get_random(maxNum) {
	if (Math.random && Math.round) {
		var ranNum= Math.round(Math.random()*(maxNum-1));
		ranNum += 1;
		return ranNum;
	} else {
		today = new Date();
		hours = today.getHours();
		mins = today.getMinutes();
		secn = today.getSeconds();
		if (hours == 19) {
			hours = 18;
		}
		var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
		return ranNum;
	}
}
function getaQuote() {
	var maxQuotes = 10;
	var whichQuote = get_random(maxQuotes);
	whichQuote--;
	var quote = new Array(maxQuotes);
	quote[0]="&quot; Whatever you dream you can do, begin it.  Boldness has genius, power and magic in it.  Begin it now! &quot; - Goethe";
	quote[1]="&quot; Be daring, be different, be impractical, be anything that will assert integrity of purpose and imaginative vision against the play-it-safers, the creatures of the commonplace, the slaves of the ordinary.&quot; - Sir Cecil Beaton (1904-1980) ";
	quote[2]="&quot; There is no such whetstone, to sharpen a good wit and encourage a will to learning, as is praise.&quot; - Roger Ascham (1515-1568)";
	quote[3]="&quot; I grow old ever learning many things.&quot; - Solon (630-555 BC)";
	quote[4]="&quot; Knowledge advances by steps, and not by leaps.&quot; - Lord Macaulay (1800-1859)";
	quote[5]="&quot; Knowledge itself is power.&quot; - Francis Bacon (1561-1626)";
	quote[6]="&quot; If you think education is expensive, try ignorance.&quot; - Derek Bok";
	quote[7]="&quot; The human mind is like an umbrella - it functions best when open.&quot; - Walter Gropius";
	quote[8]="&quot; If a man makes a slip, admonish him gently and show him his mistake.  If you fail to convince him, blame yourself, or else blame nobody.&quot; - Marcus Aurelius";
	quote[9]="&quot; It is the province of knowledge to speak and it is the privilege of wisdom to listen.&quot; - Oliver Wendell Holmes (1809-1894)";
	document.write(quote[whichQuote]);
}