<!--
function showQuote(){
	
	var theQuotes = new Array();
	theQuotes[0]="<p><span class='quote'>&quot;To meditate is to purge the mind of its self-centered activity.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[1]="<p><span class='quote'>&quot;Meditation is to find out whether the brain, with all its activities, all its experiences, can be absolutely quiet.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[2]="<p><span class='quote'>&quot;Religion is the cessation of the 'me', and action born of that silence..&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[3]="<p><span class='quote'>&quot;As long as the 'me' survives in any form, very subtly or grossly, there must be violence.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[4]="<p><span class='quote'>&quot;A sane, healthy mind must understand suffering, and be utterly free from it.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[5]="<p><span class='quote'>&quot;The self is nothing but words and memories.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[6]="<p><span class='quote'>&quot;When there is the activity of the self, meditation is not possible.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[7]="<p><span class='quote'>&quot;As long as there is a meditator, there is no meditation.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[8]="<p><span class='quote'>&quot;When there is total absence of yourself, beauty is.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[9]="<p><span class='quote'>&quot;Religion is a state of mind, a free mind, an innocent mind, and therefore a completely silent mind.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[10]="<p><span class='quote'>&quot;Love is that extraordinary thing that takes place when there is no 'me'.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[11]="<p><span class='quote'>&quot;If you are very clear, if you are inwardly a light unto yourself, you will never follow anyone.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";	
	theQuotes[12]="<p><span class='quote'>&quot;Why do you want to read others' books when there is the book of yourself?&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";
	theQuotes[13]="<p><span class='quote'>&quot;Wisdom comes only to the mind that is silent.&quot; </span><br><span class='jk'>- J. Krishnamurti</span></p>";


	var p = theQuotes.length;
	var whichQuote = Math.round(Math.random()*(p-1));

	document.write(theQuotes[whichQuote]);
}
//-->
