var Quotation=new Array()
var Author=new Array()
var Href=new Array()

Quotation[0] = "I accept chaos. I am not sure whether it accepts me.";
Author[0] = "Bob Dylan";
Href[0] = "http://en.wikipedia.org/wiki/Bob_Dylan";

Quotation[1] = "You must have chaos within your soul to give birth to a dancing star.";
Author[1] = "Fredrich Nietzsche";
Href[1] = "http://en.wikipedia.org/wiki/Nietzsche";

Quotation[2] = "The thing about democracy, beloveds, is that it is not neat, orderly, or quiet. It requires a certain relish for confusion.";
Author[2] = "Molly Ivins";
Href[2] = "http://en.wikipedia.org/wiki/Molly_Ivins";

Quotation[3] = "There's a fine line between genius and insanity. I have erased this line.";
Author[3] = "Oscar Levant";
Href[3] = "http://en.wikipedia.org/wiki/Oscar_Levant";

Quotation[4] = "I would never belong to a group that would accept someone like me as a member.";
Author[4] = "Groucho Marx";
Href[4] = "http://en.wikipedia.org/wiki/Groucho_marx";

Quotation[5] = "Never doubt that a small, group of thoughtful, committed citizens can change the world. Indeed, it is the only thing that ever has.";
Author[5] = "Margaret Mead";
Href[5] = "http://en.wikipedia.org/wiki/Margaret_Mead";

Quotation[6] = "One of the advantages of being disorderly is that one is constantly making exciting discoveries.";
Author[6] = "A. A. Milne";
Href[6] = "http://en.wikipedia.org/wiki/AA_Milne";

Quotation[7] = "The best way to have a good idea is to have lots of ideas.";
Author[7] = "Linus Pauling";
Href[7] = "http://en.wikipedia.org/wiki/Linus_Pauling";

Quotation[8] = "Human salvation lies in the hands of the creatively maladjusted.";
Author[8] = "Dr. Martin Luther King, Jr.";
Href[8] = "http://en.wikipedia.org/wiki/Martin_luther_king";

Quotation[9] = "The cure for boredom is curiosity. There is no cure for curiosity.";
Author[9] = "Dorothy Parker";
Href[9] = "http://en.wikipedia.org/wiki/Dorothy_Parker";

Quotation[10] = "I have not failed. I've just found 10,000 ways that won't work.";
Author[10] = "Thomas Edison";
Href[10] = "http://en.wikipedia.org/wiki/Thomas_edison";

Quotation[11] = "The only task that has ever been shown to require formal organization is the development and maintenance of a formal organization.";
Author[11] = "Wolfi Landstreicher";
Href[11] = "http://en.wikipedia.org/wiki/Wolfi_Landstreicher";

Quotation[12] = "Before the beginning of great brilliance, there must be chaos. Before a brilliant person begins something great, they must look foolish to the crowd.";
Author[12] = "--I-Ching, Book of Changes";
Href[12] = "http://en.wikipedia.org/wiki/I-Ching";

Quotation[13] = "The best way to predict the future is to invent it.";
Author[13] = "Alan Kay";
Href[13] = "http://en.wikipedia.org/wiki/Alan_Kay";

Quotation[14] = "Creativity is...seeing something that doesn't exist already. You need to find out how you can bring it into being and that way be a playmate with God.";
Author[14] = "Michael Shea";
Href[14] = "http://en.wikipedia.org/wiki/Michael_Shea";

Quotation[15] = "One doesn't discover new lands without consenting to lose sight of the shore for a very long time.";
Author[15] = "Andre Gide";
Href[15] = "http://en.wikipedia.org/wiki/Andre_Gide";

Quotation[16] = "Freedom is just Chaos, with better lighting.";
Author[16] = "Alan Dean Foster";
Href[16] = "http://en.wikipedia.org/wiki/Alan_Dean_Foster";

Quotation[17] = "Nobody can give you freedom. Nobody can give you equality or justice or anything. If you're a man, you take it.";
Author[17] = "Malcolm X";
Href[17] = "http://en.wikipedia.org/wiki/Malcolm_x";

Quotation[18] = "The vitality of thought is in adventure. Ideas won't keep. Something must be done about them";
Author[18] = "Alfred North Whitehead";
Href[18] = "http://en.wikipedia.org/wiki/Alfred_North_Whitehead";

Quotation[19] = "Everything you can imagine is real.";
Author[19] = "Pablo Picasso";
Href[19] = "http://en.wikipedia.org/wiki/Pablo_Picasso";

Quotation[20] = "Imagination is the beginning of creation. You imagine what you desire, you will what you imagine and at last you create what you will.";
Author[20] = "George Bernard Shaw";
Href[20] = "http://en.wikipedia.org/wiki/George_Bernard_Shaw";

Quotation[21] = "Chance is always powerful. Let your hook be always cast; in the pool where you least expect it, there will be a fish.";
Author[21] = "Ovid";
Href[21] = "http://en.wikipedia.org/wiki/Ovid";




var Q = Quotation.length;
var i=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[i] + " --<a href=\"" + Href[i] + "\">" + Author[i] + "</a>");}
showQuotation();