var testList = new Array(
	"<p>&ldquo;Your company responded beyond our expectations... We look forward to continuing our long and rewarding partnership.&rdquo;</p>",
	"<p>&ldquo;TCI was amazing from start to finish... We&lsquo;re very pleased with our new phone system and network services.&rdquo;</p>",
	"<p>&ldquo;TCI&lsquo;s training and support during our move were outstanding. We&lsquo;re delighted with our new voice and data network...&rdquo;</p>",
	"<p>&ldquo;TCI worked with us to custom-fit the Mitel system to our needs and their engineers continue to impress us as we further refine our usage.&rdquo;</p>",
	"<p>&ldquo;...we appreciate all of the help from your folks both before and during our upgrade. It&rsquo;s really nice when everything goes smooth.&rdquo;</p>",
	"<p>&ldquo;We had a phone disaster caused by my security company ...I got such excellent service and you helped us out in a crisis.&rdquo;</p>",
	"<p>&ldquo;...TCI is an adept problem solver and has provided us with tools to enhance our staff productivity...&rdquo;</p>"
)

var sigList = new Array(
	"Charles K. Collum, Jr. <br>Chairman and CEO<br>Burke and Herbert Bank & Trust<br><b>Community Bank</b>",			    
	"Patrick McDonald<br>IT Manager<br>Intercell USA<br><b>Biotechnology Company</b>",
	"Jack Pritchard<br>President<br>Korea Economic Institute<br><b>Educational Organization</b>",
	"Ralph Kass<br>Controller <br>American Benefits Council <br><b>Membership Association</b>",
	"David Coats <br>Vice President <br>nTelos<br><b>Wireless Services</b>",
	"Connie Dale<br>Dale Photo Imaging<br><b>Retail Business</b>",
	"Sally Seiler<br>Chief Executive Officer<br>The Neurology Center<br><b>Medical Practice</b>"
)


var currTest = 0;

function startTestimony() {

	document.getElementById("testimonial").innerHTML = testList[0];		
	document.getElementById("signature").innerHTML = sigList[0];
	setTimeout('runTestimony()', 6000);
}

function runTestimony() {

	currTest = currTest + 1;
	
	if(currTest < testList.length) {
		document.getElementById("testimonial").innerHTML = testList[currTest];		
		document.getElementById("signature").innerHTML = sigList[currTest];
	}
	
	if(currTest >= testList.length) {
		currTest = 0;
		document.getElementById("testimonial").innerHTML = testList[currTest];		
		document.getElementById("signature").innerHTML = sigList[currTest];
}
	setTimeout('runTestimony()', 6000);

}
