
//random guote

var FunFact = new Array();

//array to hold random quotes for RightFit
FunFact[0] = "<tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p><i>SmartMoney</i> magazine:  Ranked #1 in the annual magazine full-service broker survey in the United States (August 2005)</p><ul><li>Scored the highest-possible ranking in the four categories surveyed: customer statements, stock picking, customer satisfaction, and in a trust survey</li></ul></td></tr>";
FunFact[1] = "<tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p>For the 14th consecutive year, our Investment Representatives have voted Edward Jones No. 1 on <i>Registered Rep</i> magazine's 2006 list of top brokerage firms in the United States - based on broker surveys.
</p></td></tr>";
FunFact[2] = "<tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p>DALBAR Tax Statement Ranking:  Edward Jones earned an &quot;excellent&quot; designation for its tax statements and a &quot;very good&quot; designation for its tax guide (2004)</p></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>');

