// JavaScript Document

// ==============================================
// 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] = "And then the day came when the risk to remain tight in a bud was more painful than the risk it took to blossom.<br /><br /><span class='guru'>Anaïs Nin</span>";
Quotation[1] = "The softest thing in the universe<br />Overcomes the hardest thing in the universe<br />That without substance can enter where there is no room.<br /><br /><span class='guru'>Ch.43, Tao te Ching</span>";
Quotation[2] = "Knowing harmony is constancy.<br />Knowing constancy is enlightenment.<br /><br /><span class='guru'>Ch. 55, Tao te Ching</span>";
Quotation[3] = "One word frees us of all the weight and pain of life:  that word is love.<br /><br /><span class='guru'>Sophocles</span>";
Quotation[4] = "Between stimulus and response is a space. In this space lies our freedom to choose...<br /><br /><span class='guru'>Stephen R. Covey</span>";

// ======================================
// 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]);}
showQuotation();
