var Quotation=new Array() // do not change this!
Quotation[0] = "I find friendship to be like wine, raw when new, ripened with age, the true old man's milk and restorative cordial.";
Quotation[1] = "Now is the time to get drunk! To stop being the martyred slaves of time, to get absolutely drunk... on wine, poetry, or on virtue, as you please.";
Quotation[2] = "Music is the wine which inspires one to new generative processes, and I am Bacchus who presses out this glorious wine for mankind and makes them spiritually drunken.";
Quotation[3] = "There are days when solitude is a heady wine that intoxicates you with freedom, others when it is a bitter tonic, and still others when it is a poison that makes you beat your head against the wall.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
