function putquotes()
{
  var quotes = new Array();
  var authors = new Array();
  quotes[0]="<p>True glory consists in doing what deserves to be written; in writing what deserves to be read.</p>."
  quotes[1]="<p>Honor the gods, love your woman and defend your country. </p>"
  quotes[2]="<p>- You William Blake? </p><p>- Yes, I am. Do you know my poetry?</p>"
  quotes[3]="<p>Theirs not to make reply,</p><p>Theirs not to reason why,</p><p>Theirs but to do and die:</p><p>Into the valley of Death</p><p>  Rode the six hundred.</p>"
  quotes[4]="<p>One of the strongest motives that lead men to art and science is escape from everyday life with its painful crudity and hopeless dreariness, from the fetters of one's own ever-shifting desires.</p>"
  quotes[5]="<p>When I my grave have made,</p><p>  Let the winds and tempests beat:</p><p>Then down I'll lie as cold as clay.</p><p>True love doth pass away.</p>"
  quotes[6]="<p>Humble thyself, impotent resaon!</p>"
  quotes[7]="<p>Go forward, and faith will follow.</p>"
  authors[0]="Pliny The Elder"
  authors[1]="movie \"Tory\""
  authors[2]="movie \"Dead Man\""
  authors[3]="Alfred, Lord Tennyson"
  authors[4]="Albert Einstein"
  authors[5]="William Blake"
  authors[6]="Pascal"
  authors[7]="d\'Alembert"
  index = Math.floor(Math.random() * quotes.length);
  document.write(""  + quotes[index] + "" + "<p class='author'>~ " + authors[index] + "</p>");
}

