function displayTestimonial () {
	if ( !document.getElementById( 'testimonial' )) return false;
	var testimonial = document.getElementById( 'testimonial' );
	var quotes = new Array();
	var attributes = new Array();
	var index = 0;
	// Incremental list of all possible Text
	quotes[index] = "&#8220;I've absolutely seen a change in behavior from of my team... I'm seeing a much stronger, positive attitude toward helping our customers.&#8221;";
	attributes[index] = "Exec. VP of Dealer&nbsp;Operations<br />Konica Minolta";
	index++;
	quotes[index] = "&#8220;You can't grow as an organization, and you can't have a growing culture if people are not willing to take ownership. 2logical has helped us teach and anchor ownership with all our employees.&#8221;";
	attributes[index] = "Dir. of Professional Development and Enterprise&nbsp;Learning<br />Konica Minolta";
	index++;
	quotes[index] = "&#8220;This has completely changed my outlook on my responsibilities as a manager/leader.&#8221;";
	attributes[index] = "Snr. Regional Sales Dir.,<br />Pfizer"
	index++;
	quotes[index] = "&#8220;In twenty-five years, I have been through hundreds of training programs, none could come close to rivaling the impact and relevance of the 2logical training.&#8221;";
	attributes[index] = "Exec. VP,<br />AXA Financial Services";
	index++;
	quotes[index] = "&#8220;Relevant, impactful, targeted and too the point, these are but a few of the positive things I can say about what 2logical has done for me and my team.&#8221;";
	attributes[index] ="Regional Executive,<br />Bank of America";
	index++;
	quotes[index] = "&#8220;I have never experienced a development process that was more on-target and germane to today's work environment.&#8221;";
	attributes[index] = "Senior Level Executive,<br/>Bank of America";
	index++;
	quotes[index] = "&#8220;If everyone in our company used the principles taught in this course, our workplace would be much more productive.&#8221;";
	attributes[index] = "Divisional Vice President,<br/>AXA Financial";
	index++;
	quotes[index] = "&#8220;This training was an incredible experience that I am indebted to you for providing me with.&#8221;";
	attributes[index] = "Sarah M.,<br/>Boston, MA";
	index++;
	quotes[index] = "&#8220;The mindset piece of 2logical's training approach is clearly the differentiator among training companies.&#8221;";
	attributes[index] = "Executive VP Sales,<br />Okidata Corporation";
	index++;
	quotes[index] = "&#8220;In 21 years as a Learning Manager I have never seen or experienced a more powerful and focused approach to developing people.&#8221;";
	attributes[index] = "Director of Training,<br />Procter &amp; Gamble";
	index++;
	quotes[index] = "&#8220;We have expanded this truly unique curriculum to serve as the foundation to our initiatives, including Management/Leadership development, 'New Hire' and 'Customer Value Add' programs just to name a few.&#8221;";
	attributes[index] = "Vice President of Global&nbsp;Learning,<br />Pfizer Pharmaceutical";
	index++;
	
	var randomNumber = Math.floor( Math.random() * index );
	
	var pQuote = document.createElement( 'p' );
	pQuote.className = 'quote';
	pQuote.innerHTML = quotes[ randomNumber ];
	testimonial.appendChild( pQuote );
	
	var pAttribute = document.createElement( 'p' );
	pAttribute.className = 'attribute';
	pAttribute.innerHTML = attributes[ randomNumber ];
	testimonial.appendChild( pAttribute );
}
