function randomQuote()
{
//Define and populate the array
var aquote = new Array;
aquote[0]="The more I learn about myself, the more I become a different person.<br /><div class=\"author\">Ashleigh Brillant</div>";
aquote[1]="Cells that fire together, wire together.<br /><div class=\"author\">Carla Schatz</div>";
aquote[2]="No wind favors him who has no destined port.<br /><div class=\"author\">Michel de Montaigne</div>";
aquote[3]="The greatest of all faults is to be conscious of none.<br /><div class=\"author\">Thomas Carlyle</div>";
aquote[4]="One's certainty varies inversely with one's knowledge.<br /><div class=\"author\">Bertrand Russell</div>";
aquote[5]="It is hard to be strong and not rash.<br /><div class=\"author\">Japanese proverb</div>";
aquote[6]="The best way to predict the future is to invent it.<br /><div class=\"author\">Alan Kay</div>";
aquote[7]="A person with a strong enough why can bear almost any how.<br /><div class=\"author\">Friederich Nietzsche</div>";
aquote[8]="Compared to what we ought to be, we are only half awake.<br /><div class=\"author\">William James</div>";
aquote[9]="Not the best in the world, but the best for the world.<br /><div class=\"author\">DeWitt Jones</div>";

//Generate a random number then print the quote from that array index
rdmQuote = Math.floor(Math.random()*aquote.length);
document.write(aquote[rdmQuote]);
}

