function RandomQuote() {

 var q=new Array()
 
 q[0] = "The true voyage of discovery lies not in seeking new landscapes,<br/>but in having new eyes.";
 q[1] = "Alone we can do so little; together we can do so much.";
 q[2] = "The great use of life is to spend it for something that will outlast it.";
 q[3] = "It is our choices... that show what we truly are, far more than our abilities.";
 q[4] = "The reward of a thing well done, is to have done it.";
 q[5] = "Great things are done by a series of small things brought together.";
 q[6] = "Judge a person by their questions, rather than their answers.";
 q[7] = "I not only use all the brains that I have, but all that I can borrow.";
 q[8] = "It's only when you hitch your wagon to something larger than yourself that you realize your true potential.";
   
 var a=new Array()
 a[0] = "Marcel Proust or Mary, Queen of Scots or Rudyard Kipling";
 a[1] = "Helen Keller or Virgil or Jesse Jackson";
 a[2] = "William James or Janis Joplin or Sappho";
 a[3] = "J.K. Rowling or Frank Lloyd Wright or Aristotle";
 a[4] = "Ralph Waldo Emerson or Elizabeth Barrett Browning or Ghandi";
 a[5] = "Vincent van Gogh or Catherine the Great or Bill Clinton";
 a[6] = "Voltaire or Le Corbusier or Alice Walker";
 a[7] = "Woodrow Wilson or Monty Python or Hannah Arendt";
 a[8] = "Barack Obama or Mr. Green Jeans or Nathaniel Hawthorne";

var i = Math.round(8*Math.random())
var RandomQuote = document.getElementById('randomquote');
var QuoteAnswer = document.getElementById('quoteanswer');

RandomQuote.innerHTML = "<h3><em>" + q[i] + "</em></h3>";
QuoteAnswer.innerHTML = "<p><strong style='color: #CE8A07;'>Whose Voice?</strong> " + a[i] + "</p>";
}









