<!-------------------------------------------------------------------------------------------->
<!--| Random Quotes - JavaScript Document       	                      			       |-->
<!-------------------------------------------------------------------------------------------->
<!-- Begin Random Quotes Script
var quote_count = 19
var quotes = new Array(quote_count+1)

//Quotes start here:
quotes[0]="\"I am not a teacher. I am an awakener.\" -- Robert Frost";
quotes[1]="\"No tears in the writer, no tears in the reader.\" -- Robert Frost";
quotes[2]="\"The pen is mightier than the sword, but no one is worthy to pull it from the stone.\" -- James Bauerle";
quotes[3]="\"When I'm near the end of a book, I need to sleep in the same room with it.\" -- Joan Didion";
quotes[4]="\"There is no such thing as a moral or an immoral book. Books are well written or badly written.\" -- Oscar Wilde";
quotes[5]="\"It's too bad that our bodies wear out while our interests are just as strong as ever.\" -- Susan B. Anthony";
quotes[6]="\"Careful with fire is good advise we know. Careful with words is ten times doubly so.\" -- William Carleton"; 
quotes[7]="\"He who takes his life for granted is a pencil without an eraser.\" -- C.S. Lewis";
quotes[8]="\"I don't suffer from insanity but enjoy every minute of it.\" -- Edgar Allan Poe";
quotes[9]="\"What is life? We are born, we live a little and we die.\" -- EB White";
quotes[10]="\"Art degraded, Imagination denied.\" -- William Blake";
quotes[11]="\"Good friends, good books and a sleepy conscience: This is the ideal life.\" -- Mark Twain";
quotes[12]="\"That man is richest whose pleasures are cheapest.\" -- Henry David Thoreau";
quotes[13]="\"Dreams are the touchstones of our character.\" -- Henry David Thoreau";
quotes[14]="\"Not all who wander are lost.\" -- JRR Tolkien";
quotes[15]="\"Truth is eternal. Knowledge is changeable. It is disastrous to confuse them.\" -- Madeleine L'Engle";
quotes[16]="\"The reward of a thing well done is to have done it.\" -- Ralph Waldo Emerson";
quotes[17]="\"To be great is to be misunderstood.\" -- Ralph Waldo Emerson";
quotes[18]="\"To live is so startling it leaves little time for anything else.\" -- Emily Dickinson";
quotes[19]="\"It is not only fine feathers that make fine birds.\" -- Aesop";
//End Quotes

function random_number(){
var randscript = -1
while (randscript < 0 || randscript > quote_count || isNaN(randscript)){
randscript = parseInt(Math.random()*(quote_count+1))
}
return randscript
}
randomizer = random_number()
quote = quotes[randomizer]
// Insert the following where you want the quote to appear: document.write(quote)
<!-- End Random Quotes Script