// JavaScript Document
var textBlocks = new Array ();
textBlocks[0] = "<p>&ldquo;CFO Network really sweats the details and brings back the results–on top of good ideas.&rdquo;</p><p class='client_info'>Mike Wittenstein<br />Chief Experience Officer<br />Storyminers.com</p>";
textBlocks[1] = "<p>&ldquo;CFO Network helped us prioritize and in our rough estimation, triple our infrastructure capacity.  Now I feel much more comfortable pursuing larger projects.&rdquo;</p><p class='client_info'>Mike Wittenstein<br />Chief Experience Officer<br />Storyminers.com</p>";
textBlocks[2] = "<p>&ldquo;CFO Networks has done a superb job of ‘getting our attention’ and helping us recognize the priority of getting our financial house in order.&rdquo;</p><p class='client_info'>Fabienne and the TMM Leadership Team</p>";
textBlocks[3] = "<p>&ldquo;Part of your very clear message was that we had to focus on bottom line profitability.  You did exactly what you committed to doing with us.&rdquo;</p><p class='client_info'>Fabienne and the TMM Leadership Team</p>";
textBlocks[4] = "<p>&ldquo;You got us thinking; paying attention; working ON OUR BUSINESS; and focusing to a far greater extent on our financial management.&rdquo;</p><p class='client_info'>Fabienne and the TMM Leadership Team</p>";
textBlocks[5] = "<p>&ldquo;&hellip;we believe these changes will be reflected in this year's profitability.  We recognize and respect expertise - and your help has been invaluable.&rdquo;</p><p class='client_info'>Fabienne and the TMM Leadership Team</p>";
textBlocks[6] = "<p>&ldquo;We started working with CFO Network to review our financials.  They helped us see the value of implementing a cash forecasting process.  This process has really improved our cash management activities.&rdquo;</p><p class='client_info'>D. Hayden<br /> Radeus Labs</p>";
textBlocks[7] = "<p>&ldquo;If integrity is important to your work, call CFO Network.&rdquo;</p><p class='client_info'>D. Hayden<br /> Radeus Labs</p>";
textBlocks[8] = "<p>&ldquo;I had the pleasure to participate in the Financial 101 class. I gained valuable information that has enabled be to make business decisions that are more congruent with my overall business mission.&rdquo;</p><p class='client_info'>Lisa Craig<br />Business Owner<br />Innovative Intermedia</p>";
textBlocks[9] = "<p>&ldquo;You delivered on your promise and my time was very well spent!  I have referred you to other business owners.&rdquo;</p><p class='client_info'>Lisa Craig<br />Business Owner<br />Innovative Intermedia</p>";
textBlocks[10] = "<p>&ldquo;We want to thank you for the opportunity to attend your basic Finance 101 seminar. As small business owners of a residential real estate practice, the fundamental knowledge we learned and new thinking we gained as a result of your seminar was hugely valuable and worthwhile.&rdquo;</p><p class='client_info'>Krisstina &amp; Garry Wise<br />Principals of The GoodLife Team</p>";
textBlocks[11] = "<p>&ldquo;Now, every time we look at our financial statements and our business score card, we see new opportunities to assess our business performance, just as you promised.&rdquo;</p><p class='client_info'>Krisstina &amp; Garry Wise<br />Principals of The GoodLife Team</p>";

function getTextBlock(whichOne)
{
	var textBlock;
	switch(whichOne) {
		case "doYouKnow":
			textBlock = "<h1><span class='heading'><span class='dark_brown'>Consulting</span> </h1><ul class='dark_brown'><li>Accounting</li><li>Cash Flow</li><li>Budgeting</li><li>Treasury</li><li>Financial Systems Integration</li></ol>";
			break;
		case "testimonial":
			var rand = Math.round(Math.random()*10);
			var textBlock = "<h1><span class='heading'><span class='dark_brown'>Client</span> <span class='dark_grey'>Testimonial</span></span></h1>"+textBlocks[rand];
			break;
	}
	return textBlock;
}