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] = "You must be the change you want to see. -- Gandhi ";
Quotation[1] = "It is critical vision alone which can mitigate the unimpeded operation of the automatic. -- Marshall Mcluhen (1911-1980)";
Quotation[2] = "A dream is your creative vision for your life in the future. You must break out of your current comfort zone and become comfortable with the unfamiliar and the unknown. -- Denis Waitley (1933-) American Author, Peak Performance Expert ";
Quotation[3] = "Dream lofty dreams, and as you dream, so shall you become. Your vision is the promise of what you shall one day be; your ideal is the prophecy of what you shall at last unveil.  --  James Allen (1864-1912) British Essayist ";
Quotation[4] = "When you're through changing, you're through. --  Bruce Barton 1886-1967  ";
Quotation[5] = "Envisioning the end is enough to put the means in motion. -- Dorothea Brande (1893-1948) ";
Quotation[6] = "Act as if it were impossible to fail.  --  Dorothea Brande (1893-1948)   ";
Quotation[7] = "The first step toward change is awareness. The second step is acceptance. -- Nathaniel Branden ";

// ======================================
// 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();