// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "\"Outside of a Dog, a book is man's best friend. Inside of a dog, it's too dark to read\"<br> - Groucho Marx";
Quotation[1] = "\"A good book is the best of friends, the same to-day and for ever\"<br> - Martin Tupper"; 
Quotation[2] = "\"I would be most content if my children grew up to be the kind of people who think decorating mostly consists of building enough bookshelves\"<br> - Anna Quindlen";
Quotation[3] = "\"A book is like a garden carried in the pocket\"<br> - Chinese Proverb"; 
Quotation[4] = "\"You do not have to burn books to destroy a culture. Just get people to stop reading them\"<br> - Ray Douglas Bradbury"; 
Quotation[5] = "\"I suggest that the only books that influence us are those for which we are ready, and which have gone a little further down our particular path than we have gone ourselves.\"<br> - E M Forster"; 
Quotation[6] = "\"I still find each day too short for all the thoughts I want to think, all the walks I want to take, all the books I want to read, and all the friends I want to see.\"<br> - John Burroughs"; 
Quotation[7] = "\"A room without books is like a body without a soul.\"<br> - Marcus Tullius Cicero";
Quotation[8] = "\"All I really need to know about how to live and what to do and how to be I learned in kindergarten. Remember the <i>Dick and Jane</i> books and the first word you learned, the biggest word of all, look.\"<br> - Robert Fulghum"; 
Quotation[9] = "\"As life goes on, don't you find that all you need is about two real friends, a regular supply of books, and a Peke?\"<br> - P G Wodehouse";
Quotation[10] = "\"The biggest critics of my books are people who never read them.\"<br> - Jackie Collins"; 
Quotation[11] = "\"Be careful about reading health books. You may die of a misprint\"<br> - Mark Twain";
Quotation[12] = "\"The great objection to new books is that they prevent our reading old ones\"<br> - Joseph Joubert"; 
Quotation[13] = "\"Books that you carry to the fire, and hold readily in your hand, are most useful after all.\"<br> - Samuel Johnson";
Quotation[14] = "\"Books are not made for furniture, but there is nothing else that so beautifully furnishes a house.\"<br> - Henry Ward Beecher";
Quotation[15] = "\"Some books are undeservedly forgotten; none are undeservedly remembered.\"<br> - W H Auden"; 
Quotation[16] = "\"Obviously there will be a sense of achievement... I suppose there will be some benefits to not writing Harry Potter books any more. So it is about fifty-fifty really\"<br> - J K Rowling"; 
Quotation[17] = "\"Youth is a time when we find the books we give up but do not get over.\"<br> - Lionel Trilling";
Quotation[18] = "\"An author who speaks about his own books is almost as bad as a mother who talks about her own children\"<br> - Benjamin Disraeli";
Quotation[19] = "\"There are perhaps no days of our childhood we lived so fully as those we spent with a favourite book\"<br> - Marcel Proust";
Quotation[20] = "\"A book worth reading only in childhood is not worth reading even then\"<br> - C S Lewis";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
