
//random guote

var FunFact = new Array();

//array to hold random quotes for opportunity
FunFact[0] = " <tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p><i>Barron\'s</i> magazine: the Edward Jones Model Stock Portfolio\'s long-term track record beat the performance of the 14 other U.S. brokerage firms it surveyed (January 2004)</p></td></tr>";
FunFact[1] = " <tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p><i>Forbes</i> magazine: Ranked #77 on the list of the United States' 305 largest privately-held companies (November 2004)</p></td></tr>";
FunFact[2] = " <tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p>United States Securities Industry Yearbook: Edward Jones ranking among all firms (2004-2005)... </p><ul><li>#1 in number of offices </li><li>#4 in number of brokers </li><li>#5 in number of employees </li><li>#30 in capital </li></ul></td></tr>";

var FFlength = FunFact.length;
var WhichFact = Math.round(Math.random()*(FFlength-1));

//write out header
document.write('<table width="216" border="0" cellpadding="1" cellspacing="0" bgcolor="#336666"><tr><td><table width="216" border="0" cellspacing="0" cellpadding="0"bgcolor="#fff8d4" align="left" valign="top"><tr><td><img src="images/factoid-heading.gif" width="216" height="24"></td> </tr>');
//write out random quote
document.write(FunFact[WhichFact]);
//write out footer
document.write ('</table></td></tr></table>');
