/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 10;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Dr. Seuss";
body="The more that you read, the more things you will know. The more that you learn, the more places you'll go.";
}

if (quotes==1) {
title="C.S. Lewis";
body="Ideally, we should like to define a good book as one which 'permits, invites, or compels' good reading";
}

if (quotes==2) {
title="Ralph Waldo Emerson";
body="If we encounter a man of rare intellect, we should ask him what books he reads.";
}

if (quotes==3) {
title="~ Maya Angelou ~";
body="When I look back, I am so impressed again with the life-giving power of literature. If I were a young person today, trying to gain a sense of myself in the world, I would do that again by reading, just as I did when I was young.";
}

if (quotes==4) {
title="~ Alberto Manguel ~";
body="Life happened because I turned the pages.";
}

if (quotes==5) {
title="~ Aldous Huxley ~";
body="The proper study of mankind is books.";
}
if (quotes==6) {
title="Groucho Marx";
body="I must say that I find television very educational. The minute somebody turns it on, I go to the library and read a book.";
}
if (quotes==7) {
title="~ B. F. Skinner ~";
body="We shouldn't teach great books; we should teach a love of reading.";
}
if (quotes==8) {
title="-Jonathan Swift-";
body="Books, the children of the brain";
}
if (quotes==9) {
title="-Kurt Vonnegut Jr.-";
body="High School is closer to the core of the American experience than anything else I can think of";
}

document.write('<div align=left>');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'');
document.write('</div>');
