var Quotation=new Array()

Quotation[0] = "Did you know?  When you purchase a year of hosting in advance, you receive a free domain name!";
Quotation[1] = "\"Try not to become a man of success but rather become a man of value.\" - Albert Einstein";
Quotation[2] = "\"Nothing succeeds like the appearance of success.\" - Christopher Lasch";
Quotation[3] = "\"Drive thy business or it will drive thee.\" - Benjamin Franklin";
Quotation[4] = "\"To succeed as a team is to hold all of the members accountable for their expertise.\" - Mitchell Caplan";
Quotation[5] = "\"In a business world, the rearview mirror is always clearer than the windshield.\" - Warren Buffett";
Quotation[6] = "\"The computing field is always in need of new clich&eacute;s.\" - Alan Perlis";
Quotation[7] = "\"If people aren't going to talk about your product, then it's not good enough.\" - Jeffrey Kalmikoff";
Quotation[8] = "\"Where facts are few, experts are many.\" - Donald R. Gannon";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}