
//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>FFor 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 - based on broker surveys.</p></td></tr>';
FunFact[1] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p><i>Smart Money</i> magazine: Ranked No. 1 in the magazine\'s annual full-service broker survey in the United States (August 2005); Edward Jones placed ahead of seven other firms and scored the highest-possible ranking in the four categories surveyed: client statements, stock picking, client satisfaction, and in a trust survey </p></td></tr>';
FunFact[2] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p><i>Forrester Research:</i> For the third consecutive year, Edward Jones is among the best advocates for its customers, according to a national research study of U.S. financial-services firms by Forrester Research (June 2005) </p></td></tr>';

FunFact[3] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p><i>Training magazine: </i>Ranked among the top 100 training organizations in the United States (March 2006)</p></td></tr>';
FunFact[4] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><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[5] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p><i>Training</i> magazine: Ranked No.19 in <i>Training </i>magazine\'s list of top training organisations in the United States (March 2005) </p></td></tr>';
FunFact[6] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p><i>FORTUNE</i> magazine: For the seventh year, <i>FORTUNE</i> magazine ranks Edward Jones one of the &quot;100 Best Companies to Work For&quot; in America. The firm took the No.16 overall spot in the ranking and was also was named to the No.4 spot for large companies (January 2006). The seven <i>FORTUNE</i> rankings include top 10 finishes for five years and consecutive number one rankings in 2002 and 2003. </p></td></tr>';
FunFact[7] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p>Edward Jones Investment Representatives are whole of market - both financial advisers and stockbrokers</p></td></tr>';
FunFact[8] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p>Edward Jones currently has over 100 branch offices in the United Kingdom</p></td></tr>';
FunFact[9] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p>Edward Jones opened its first UK branch in 1998</p></td></tr>';
FunFact[10] = ' <tr><td class=\"padding\" bgcolor=\"#fff8d4\" style=\"padding:15px;color:#000000;font-size:10px;\"><p>United States Securities Industry Yearbook: Edward Jones ranking among all firms (2005-2006)... <ul><li>No.1 in number of offices </li><li>No.4 in number of brokers </li><li>No.5 in number of employees </li></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>');


