
//random guote

var FunFact = new Array();

//array to hold random quotes for Why

//FunFact[0] = " <tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p><A HREF=\"http://www.jdpower.com\" target=\"_blank\">J.D. Power and Associates</a>: Edward Jones is currently ranked &quot;Highest in Investor Satisfaction with Full Service Brokerage Firms&quot; in the <A HREF=\"http://www.jdpower.com\" target=\"_blank\">J.D. Power and Associates</a> 2005 Full Service Investor Satisfaction Study<sup>sm</sup> in the United States (April 2005)</p><ul><li>Based on responses from 6,637 investors who used one of the 20 firms profiled in the study</li></ul></td></tr>";


FunFact[0] = "<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p><i>Training</i> Magazine: Ranked #19 on their list of top training organizations in the United States (March 2005)</p></td></tr>";
FunFact[1] = "<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p><i>Phoenix Business Journal</i>:  Ranked #8 on the list of the &quot;Best Places to Work in the Valley of the Sun&quot;  (December 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>');
