// JavaScript Document

var quote ="";

// create quote array
var Quotation=new Array() 

// 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] = "Ivan Ilych's life had been most simple and most ordinary and therefore most terrible. <br><span id='rightquote'>-Leo Tolstoy<br><i>The Death of Ivan Ilych</i></span>";
Quotation[1] = "I am enough of an artist to draw freely upon my imagination. Imagination is more important than knowledge. For knowledge is limited, whereas imagination embraces the entire world. <br><span id='rightquote'> - Albert Einstien</span>";
Quotation[2] = "Nothing great was ever achieved without enthusiasm. <br><span id='rightquote'> - Ralph Waldo Emerson <br><i>Circles</i></span>";
Quotation[3] = "Nothing astonishes men so much as common sense and plain dealing. <br><span id='rightquote'> -Ralph Waldo Emerson <br> <i>Art</i></span>";
Quotation[4] = "People come out of our concerts and feel invincible. They feel like a building could fall on them, nothing would happen. They feel like a car could hit them, nothing would happen. Frequently cars <i>do</i> hit them. <br><span id='rightquote'> - David Lee Roth</span>";
Quotation[5] = "What is simplicity? Simplicity is the shortest path to a solution.<br><span id='rightquote'> - Ward Cunningham</span>";
Quotation[6] = "Change happens by listening and then starting a dialogue with the people who are doing something you don't believe is right.<br><span id='rightquote'> - Jane Goodall</span>";
Quotation[7] = "You can have the greatest strategy in the world but what is the point if no one cares? <br><span id='rightquote'> - Patrick Baxton <br> <i>Building a Better Business</i></span>";
Quotation[8] = "A <i>person</i> is smart. People are dumb, panicky, dangerous animals, and you know it. <br><span id='rightquote'> - Agent K<br> <i>Men in Black</i></span>";
Quotation[9] = "If a kid asks where rain comes from, I think a cute thing to tell him is 'God is crying.' And if he asks why God is crying, another cute thing to tell him is 'Probably because of something you did.' <br><span id='rightquote'> - Jack Handy</span>";
Quotation[10] = "If I'd asked people what they wanted, they would have asked for a better horse. <br><span id='rightquote'> - Henry Ford</span>"
Quotation[11] = "Never gonna give you up; Never gonna let you down; Never gonna run around and desert you <br><span id='rightquote'> - Rick Astley</span>"
Quotation[12] = "Ability is what you're capable of doing. Motivation determines what you do. Attitude determines how well you do it. <br><span id='rightquote'> - Lou Holtz</span>"
Quotation[13] = "Opportunity is missed by most people because it's dressed in overalls and looks like work. <br><span id='rightquote'> - Thomas Edison</span>" 
Quotation[14] = "The real danger is not that computers will begin to think like men, but that men will begin to think like computers. <br><span id='rightquote'> - Sydney J. Harris</span>"
Quotation[15] =  "This is perhaps the most beautiful time in human history; it is really pregnant with all kinds of creative possibilities made possible by science and technology which now constitute the slave of man - if man is not enslaved by it.  <br><span id='rightquote'> - Dr. Jonas Salk</span>"
Quotation[16] = "You can make more friends in two months by becoming interested in other people than you can in two years of trying to get other people interested in you. <br><span id='rightquote'> - Dale Carnegie</span>"
Quotation[17] = "There's nothing you can do that can't be done.<br><span id='rightquote'> - The Beatles <br> <i>All You Need isLove</i></span>"
function replacequote() {
	var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));

//alert(Quotation[whichQuotation]);
document.getElementById("quotespace").innerHTML = Quotation[whichQuotation];
	setTimeout('replacequote()',10000);
}