
//random guote

var FunFact = new Array();

//array to hold random quotes for Default
FunFact[0] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p><p><i>Toronto Globe and Mail Report</i> on <i>Business</i> magazine: For the fifth consecutive year, Edward Jones has been named one of the &#147;50 Best Employers in Canada&#148; in the Globe and Mail&#146;s annual listing in Report on Business Magazine. The firm was ranked No. 3 overall. (January 2007) </p></td></tr>';

FunFact[1] = "<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p>J.D. Power for Canada: Edward Jones was ranked &#147;Highest in Investor Satisfaction with Full Service Brokerage Firms<sup>SM</sup>&#148; in the J.D. Power and Associates 2006 Canadian Full Service Investor Satisfaction Study. (June 2006)* </p></td></tr>";
FunFact[2] = '<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p><i>BC Business</i> magazine  For the second consecutive year Edward Jones has been named one of the "Top 25 Companies to Work for in British Columbia" by BCBusiness Magazine and Watson Wyatt Worldwide. (December 2006) </p></td></tr>';

FunFact[3] = '<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p><i>Investment Executive</i>. For the ninth consecutive year, Edward Jones has ranked among the top five firms in Investment Executive Magazine&#146;s annual ranking in Canada. Edward Jones ranked No. 1 in the 2006 "Brokerage Report Card" in the independent broker category. (May 2006)</p></td> </tr>';

FunFact[4] = '<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p><i>Canadian Business</i> Magazine: Edward Jones ranked 6th in the inaugural “Best Workdplaces in Canada” list in Canadian Business magazine, conducted by Great Place to Work Institute Canada.</p></td></tr>';

FunFact[5] = '<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p><i>FORTUNE</i> magazine.  For the eighth year Edward Jones was named one of the "100 Best Companies to Work For" in America by <i>FORTUNE</i> magazine in its annual listing. The eight <i>FORTUNE</i> rankings include top 10 finishes for five years and consecutive number one rankings in 2002 and 2003. </p></td></tr>';

FunFact[6] = '<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p>For the 14th consecutive year, our Investment Representatives have voted Edward Jones No. 1 on <i>Registered Rep</i> magazine&#146;s 2006 list of top brokerage firms in the United States &#150; based on broker surveys.</p></td></tr>';

FunFact[7] = "<tr><td class=\"padding\" style=\"padding:15px;color:#000000;font-size:10px;\" bgcolor=\"#fff8d4\"><p>Forrester Research: For the third consecutive year Edward Jones is among the best advocates for its customers according to a national study of U.S. financial-services firms by Forrester Research. Edward Jones is the highest-ranked brokerage named on the list. (May 2006)</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>');

