﻿/* loads and displays testimonials on home page */
var testimonialFrame = document.getElementById('testimonial-frame');
var testimonialElements = testimonialFrame.getElementsByTagName("div");
var dummyTimerID = null;
var iLoop = 0;

function loadTestimonial()
{
	testimonialElements[0].innerHTML = testimonialsList[iLoop][0];
	testimonialElements[1].innerHTML = testimonialsList[iLoop][1];
	if (testimonialsList[iLoop][2] != '')
	{
		testimonialElements[2].style.display = 'block';
		testimonialElements[2].innerHTML = testimonialsList[iLoop][2];
	}
	else
		testimonialElements[2].style.display = 'none';
		
	iLoop ++;
	
	if (iLoop == testimonialsList.length)
		iLoop = 0;
}