
var Quotation=new Array() 

Quotation[0] = "<img src='http://watergarden.com/Pond-Photos/2005/preview/brian-mccormally.jpg' width='160' height='132' border='0'>";
Quotation[1] = "<img src='http://watergarden.com/Pond-Photos/2005/preview/andy-chapman.jpg' width='160' height='99' border='0'>";
Quotation[2] = "<img src='http://watergarden.com/Pond-Photos/2005/preview/larry-heidy-clark.jpg' width='160' height='120' border='0'>";
Quotation[3] = "<img src='http://watergarden.com/Pond-Photos/2004/preview/Larry-Louise-Langenauer.jpg' width='150' height='113' border='0'>";
Quotation[4] = "<img src='http://watergarden.com/home_images/ponds/tropical_500-372.jpg' width='150' height='119' border='0'>";
Quotation[5] = "<img src='http://watergarden.com/home_images/ponds/thumbnail_BeeLily_445-421.jpg' width='160' height='151' border='0'>";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function randomQuote(){document.write(Quotation[whichQuotation]);}
randomQuote();


