/* This function generates a random number to be used later to call random text/images when the page is reloaded. */
function getRandom(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;
	}
}

/* This section writes text/images from an array when called from the body of the page. */
/* Adjust the maxContent value below to match the number of items in the array. */
var maxContent=9;
var whichContent=getRandom(maxContent);
whichContent--;

/* Define the array here. */
var Content=new Array(maxContent);
Content[0]="<p><strong>&ldquo;Sit quietly, doing nothing, spring comes and the grass grows by itself.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; Zen saying</p>"

Content[1]="<p><strong>&ldquo;I am not bound to win, but I am bound to be true. I am not bound to succeed, but I am bound to live up to whatever light I have.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; Abraham Lincoln</p>"

Content[2]="<p><strong>&ldquo;Be yourself. Who else is better qualified?&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; Frank J. Giblin II</p>"

Content[3]="<p><strong>&ldquo;The mediocre teacher tells. The good teacher explains. The superior teacher demonstrates. The great teacher inspires.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; William A. Ward</p>"

Content[4]="<p><strong>&ldquo;Once we realize that imperfect understanding is the human condition, there is no shame in being wrong, only in failing to correct our mistakes.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; George Soros</p>"

Content[5]="<p><strong>&ldquo;One must still have chaos in oneself to be able to give birth to a dancing star.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; Nietzsche</p>"

Content[6]="<p><strong>&ldquo;Don't be too proud to take lessons. I'm not.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; Jack Nicklaus</p>"

Content[7]="<p><strong>&ldquo;As we express our gratitude, we must never forget that the highest appreciation is not to utter words, but to live by them.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; John F. Kennedy</p>"

Content[8]="<p><strong>&ldquo;Out of your vulnerabilities will come your strength.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; Sigmund Freud</p>"




/* Write the content to the document. */
document.write(Content[whichContent]);

