
<!--

quotes = new Array(15);
quotes[0] = "The purpose of any athletic endeavor is to challenge human limits both on and off the playing field.";
quotes[1] = "Winning isn't everything. Wanting to is.";
quotes[2] = "Winners never quit & quitters never win." ;
quotes[3] = "Quitting is only a shortcut to losing.";
quotes[4] = "Losers quit when they're tired. Champions quit when they hold the gold.";
quotes[5] = "Champions believe in themselves even if no one else does.";
quotes[6] = "Winners make goals, losers make excuses.";
quotes[7] = "Success is measured by effort.";
quotes[8] = "Some people dream of success while others wake up & achieve it.";
quotes[9] = "All glory comes from daring to begin.";
quotes[10] = "Accept challenges so that you may feel the exhilaration of victory.";
quotes[11] = "If you think you can win, you can win. Faith is necessary to victory.";
quotes[12] = "If you can't win, make the fellow ahead of you break the record.";
quotes[13] = "Teamwork is the fuel that allows common people to produce uncommon results.";
quotes[14] = "Persevere and never fear.";
quotes[15] = "Strive for excellence, not perfection.";

index = Math.floor(Math.random() * quotes.length);

document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("</DL>\n");

//-->
