quotes=new Array();
quote=new Array();

quotes[0]="I wish I could stand on a busy corner, hat in hand, and beg people to throw me all their wasted hours.";
quote[0]="Bernard Berenson";

quotes[1]="What a wonderful life I've had! I only wish I'd realized it sooner.";
quote[1]="Colette";

quotes[2]="Cooperation is doing with a smile what you have to do anyhow.";
quote[2]="Anon.";


quotes[3]="There is a very real relationship, between what you contribute and what you get out of this world.";
quote[3]="Oscar  Hammerstein II";

quotes[4]="What you do not want done to yourself, do not do to others.";
quote[4]="Confucius";

quotes[5]="Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment.";
quote[5]="Buddha";

quotes[6]="Live as if you were to die tomorrow.  Learn as if you were to live forever.";
quote[6]="Mahatma Gandhi";

quotes[7]="Whatever is worth doing at all, is worth doing well.";
quote[7]="Chesterfield";

quotes[8]="It's not that I'm so smart, it's just that I stay with problems longer.";
quote[8]="Albert Einstein";

quotes[9]="All labor that uplifts humanity has dignity and importance and should be undertaken with painstaking excellence. ";
quote[9]="Martin Luther King, Jr.";

quotes[10]="I have not failed. I've just found 10,000 ways that won't work.";
quote[10]="Thomas A. Edison";

function randomInteger(size) {
   return Math.floor((size+1)*Math.random());
}


function writeRandomQuote(){
myIndex=randomInteger(quotes.length-1);

document.write(quotes[myIndex]);
document.write("<br/><span style='float: right'>");
document.write(quote[myIndex]);
document.write("</span>");

}
