var Quotation=new Array()

Quotation[0] = "If your peers<br />understand what<br />you've done,<br />it's not creative.";
Quotation[1] = "If it doesn't sell,<br />it isn't creative.";
Quotation[2] = "Less is only<br />more where more<br />is no good.";
Quotation[3] = "Pastry satisfies where art is unavailable.";
Quotation[4] = "Delete not, lest you, too, be deleted.";
Quotation[5] = "The less you talk,<br />the more you're<br />listened to.";
Quotation[6] = "You can never have<br />enough white space.";
Quotation[7] = "<br />Less is more.<br />";
Quotation[8] = "Why keep a dog and bark yourself?<br />";
Quotation[9] = "What is the difference<br />between cold dead<br />fish and sushi?<br />";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();