
//random guote

var FunFact = new Array();
//array to hold random quotes for Default
FunFact[0] = " <tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p>For the eighth year Edward Jones was named one of the &#147;100 Best Companies to Work For&#148; 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[1] = "<tr><td class=\"padding\" style=\"padding:15px;color:#000000;\" bgcolor=\"#fff8d4\"><p>For the sixth consecutive year, Edward Jones ranked as a top company for training its associates in <i>Training</i> magazine&#146;s 2006 Top 100 edition.</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>');
