	var TestimonySlideShowSpeed = 4000;
	var TestimonyCrossFadeDuration = 3;
	var aryText = new Array(14);

	var tss1;
	var iss1;
	var jss1 = 0;
	var pss1 = 13;

	aryText[0] = "Phil Smitherman and his Aux team are first of all intelligent, bright people. They are well trained and curteous. This is why I feel they have such great customer service. In all my years of owning several homes I have never liked my heating and air conditioning service companies. I like Aux.<br>-<i> Mr. Klopman of Vestavia Hills</i>";
	aryText[1] = "Really enjoyed the knowledge of technician and the honesty he provided.<br><i>- Mr. Franklin of Bessemer</i></i>";
	aryText[2] = "Great serviceman! Very informative and considerate.<br>-<i> Mrs. Glover of Alabaster</i>";
	aryText[3] = "Technician was very knowledgeable.<br>-<i> Mr. Humphrey of Hoover</i>";
	aryText[4] = "This Company is very easy to work with- Thank You!!<br>-<i> Mrs. Blevins of Hoover</i>";
	aryText[5] = "Outstanding Service!<br>-<i> Mrs. Sharp of Homewood</i>";
	aryText[6] = "If I need anymore service I’ll be sure to use your company!<br><i>-Mrs. Patterson of Moody</i>";
	aryText[7] = "The best company around, HANDS DOWN!<br><i>- Mrs. Debarr of Hoover</i>";
	aryText[8] = "Thank You!<br><i>- Mrs. Melton of Helena</i>";
	aryText[9] = "Excellent service. Thank you!<br><i>- Mrs. Roberson of Hueytown</i>";
	aryText[10] = "... very pleased with service. Thank You!<br><i>- Mrs. Vegger of Maylene</i>";
	aryText[11] = "Bruce was very professional and personable.<br><i>- Mr. Gann of Pelham</i>";
	aryText[12] = "I especially appreciate the care of Mr. Raney to wear shoe cover’s on our carpet, he seemed very thorough.<br><i>- Mrs. Brown of Hueytown</i>";
	aryText[13] = "Professional behavior and friendliness of Bruce was very complimentary and I felt safe enough to leave him at my home and I am sure he would protect it as if it were his own. He was timely and competent in the performance of his trade. Just send him back again!<br><i>- Mrs. Cochran of Pelham</i>";

	function runTestimonySlideShow(){
		var d;

		d = document.getElementById('TestimonyDiv');

		if (document.all){
			d.style.filter="blendTrans(duration=2)";
			d.style.filter="blendTrans(duration=TestimonyCrossFadeDuration)";
			d.filters.blendTrans.Apply();
		}
		d.innerHTML = aryText[jss1];

		if (document.all) { 
			d.filters.blendTrans.Play();
		}

		jss1 = jss1 + 1;
		if (jss1 > (pss1)) jss1=0;
		tss1 = setTimeout('runTestimonySlideShow()', TestimonySlideShowSpeed);
	}

