quotes = new Array(2);
authors = new Array(2);
quotes[0] = "<A HREF='http://www.trainright.com/promos.asp?code=PQCSBFBMR' target='_news'><IMG SRC='http://www.runnersweb.com/running/images/CTSBanner120x60.gif' HEIGHT='60' WIDTH='120' BORDER='0'></A>";
quotes[1] = "<A HREF=http://www.trainright.com/promos.asp?code=PQCSBFBMR' target='_news'><IMG SRC='http://www.runnersweb.com/running/images/CTSBanner120x60.gif' HEIGHT='60' WIDTH='120' BORDER='0'></A> ";

 //calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + quotes[index]); 
//document.write("</DL>\n");
//done

