var tests = new Array();
var authors = new Array();

var preText = "<table cellpadding=0 cellspacing=0><tr><td><img src='img/10x10.gif' width='10' height='11'></td></tr> <tr><td class='testimonial'>'";
var midText = "'</td></tr> <tr><td><img src='img/10x10.gif' width='10' height='11'></td></tr><tr><td class='testimonialAuth'>";

var endText  = "</td></tr> <tr><td>&nbsp;</td></tr></table>";

tests[0] = "A terrific tool that really changes the conversation with my clients and prospects.";
tests[1] = "I just performed a number of searches using the new search capability - it was great. Saved me a lot of time.";
tests[2] = "Excellent!!  This is a great update.  The ability to save searches is a huge timesaver for me.'";
tests[3] = "The Fiduciary Analytics system is a cornerstone to our reporting and due diligence process.";
tests[4] = "The Fiduciary Analytics system allows us to focus on the qualitative aspects of our research and enables us to spend more time with our institutional clients.";
tests[5] = "The tools have greatly enhanced quarterly fund due diligence efficiency for our firm.";
tests[6] = "Managing an investment process that truly adheres to a fiduciary standard would not be possible without the tools offered by Fiduciary Analytics.";
tests[7] = "It is virtually impossible for me to do a proper job for my clients without your program and tools.";
tests[8] = "Thank you for being the guiding light in the very dark storm of fiduciary issues.";
tests[9] = "Since 2000, Fiduciary Analytics has been the mainstay of all of my research, monitoring, and client reporting.";
tests[10] = "Fiduciary Analytics is an invaluable resource in ensuring that the quality of my advisory work is superior.";
tests[11] = "Fiduciary Analytics serves as a vital tool in communicating to clients the critical importance of following a prudent process in all markets.";
tests[12] = "Fiduciary Analytics provides unique and exceptionally powerful resources for investment professionals.";
tests[13] = "Thank you Fiduciary Analytics for your wisdom and foresight in creating invaluable tools for the investment industry.";
tests[14] = "Fiduciary Analytics offers a complete turnkey tool that has helped us generate Investment Policy Statements as well as effectively monitor the fiduciary process on an ongoing basis.";
tests[15] = "This process has enabled us to elevate our client relationships to a new level.";
tests[16] = "The Analyzer has been a critical element to help guide clients through the fund selection and monitoring process.";
tests[17] = "Without Fiduciary Analytics, we would be at a loss for a reasonably priced tool that assists our clients (and us) with these increasingly important requirements.";
tests[18] = "Fiduciary Analytics' tools enable us to be more effective with investment operations, as well as, provide an ongoing prudent process and due diligence for our ERISA and Wealth Management clients.";
tests[19] = "My entire team is very impressed with the results and feed-back from our clients and prospects on the analytic tools you have developed.";
tests[20] = "Committee members and individual investors alike are overwhelmed with the simplicity of the report. Focusing on the Fiduciary Score rather than pure performance is a great differentiator.";
tests[21] = "Fiduciary Analytics has been a tremendous support when working with CFOs and Investment Committees wanting real data to make decisions.";
tests[22] = "We are impressed with the constant improvement we have seen in services offered through Fiduciary Analytics.";
tests[23] = "Fiduciary Analytics tool kit is an essential tool for all RIA’s and independent BD’s.";
tests[24] = "The analyzer is the best product on the market and useful for quarterly compliance.";
tests[25] = "Fiduciary Analytics provides a vehicle in which I can easily demonstrate the Fiduciary Process in a way that clients can understand.";
tests[26] = "Fiduciary Analytics allows me, the advisor, to think through my process and re-evaluate my investment choices.";









authors[0]= "Bob Jamison<BR><nobr>Jamison Financial<BR><nobr>Services, Inc.</nobr>";
authors[1]= "Michael J. Fischer<BR><nobr>Sequoia Financial<BR><nobr>Advisors, Inc.</nobr>";
authors[2]= "David J. Nowacowski<BR><nobr>The Bay Ridge<BR><nobr>Group, Inc.</nobr>";
authors[3]= "Sean Waters<BR><nobr>Cook Street<br>Consulting</nobr>";
authors[4]= "Sean Waters<BR><nobr>Cook Street<br>Consulting</nobr>";
authors[5]= "Monica Garver<BR><nobr>PrimeSOLUTIONS<br>Advisors, LLC</nobr>";
authors[6]= "Tim Hatton<BR><nobr>Hatton Consulting</nobr>";
authors[7]= "Rohn Trieglaff<BR><nobr>Financial Telesis Inc.</nobr>";
authors[8]= "Rohn Trieglaff<BR><nobr>Financial Telesis Inc.</nobr>";
authors[9]= "Brooks Sackett<BR><nobr>Chief Capital<br>Management</nobr>";
authors[10]= "Brooks Sackett<BR><nobr>Chief Capital<br>Management</nobr>";
authors[11]= "Brooks Sackett<BR><nobr>Chief Capital<br>Management</nobr>";
authors[12]= "<nobr>Carolyn J. Tomlinson</nobr>";
authors[13]= "<nobr>Carolyn J. Tomlinson</nobr>";
authors[14]= "<nobr>Ingham Group</nobr>";
authors[15]= "<nobr>Ingham Group</nobr>";
authors[16]= "Jim Reed<BR><nobr>Fleischer Jacobs Group,<br>Asset Mgt</nobr>";
authors[17]= "Jim Reed<BR><nobr>Fleischer Jacobs Group,<br>Asset Mgt</nobr>";
authors[18]= "Al Otto<BR><nobr>White Horse Advisors</nobr>";
authors[19]= "Tom Noble<BR><nobr>Noble Retirement Group<br>Raymond James</nobr>";
authors[20]= "Tom Noble<BR><nobr>Noble Retirement Group<br>Raymond James</nobr>";
authors[21]= "Jim Pierce<BR><nobr>Holmes Murphy</nobr>";
authors[22]= "Jim Pierce<BR><nobr>Holmes Murphy</nobr>";
authors[23]= "Scott Noyes<BR><nobr>Noyes Capital<br>Management</nobr>";
authors[24]= "Scott Noyes<BR><nobr>Noyes Capital<br>Management</nobr>";
authors[25]= "Morris Armstrong<BR><nobr>Armstrong Financial Strategies</nobr>";
authors[26]= "Morris Armstrong<BR><nobr>Armstrong Financial Strategies</nobr>";






function chooseTestimonial(){
	var len=tests.length;
	var index = Math.floor( (Math.random()) *len);
	document.write(preText);
	document.write(tests[index]);
	document.write(midText);
	document.write(authors[index]);
	document.write(endText);
}


