<!-- Begin
var howMany = 13
var quote = new Array(howMany+1)
quote[0]="No matter how mighty a tree is, it will always dance to the tune of the wind."
quote[1]="The only place where success precedes work is the dictionary."
quote[2]="The secret of success is to start from scratch and keep scratching."
quote[3]="Where the leopard is made judge, the goat will never get a fair judgement."
quote[4]="Anyone who has ever looked into the glazed eyes of a soldier dying on the battlefield will think hard before starting a war."
quote[5]="A child who washes his hands clean enough gets to eat with the elders."
quote[6]="The wells of joy are dug sometimes with the spade of sorrow."
quote[7]="It takes twenty years or more of peace to make a man; it takes only twenty seconds of war to destroy him."
quote[8]="He who never walks, except where he sees other peoples footprints, will make no discoveries."
quote[9]="Knowing is not enough, we must apply. Willing is not enough, we must do."
quote[10]="Success is to be measured not so much by the position that one has reached in life but by the obstatcles which one has overcome while trying to succeed."
quote[11]="Our greatest glory is not in never failing but rising every time we fall."
quote[12]="It is not the man with a motive, but the one with a purpose who prevails."
quote[13]="Experience is the child of Thought, and Thought is the child of Action."

function rndnumber()
{
  var randscript = -1
  while (randscript < 0 || randscript > howMany || isNaN(randscript))
  {
   randscript = parseInt(Math.random()*(howMany+1))
  }
  return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
// End -->




		
											   