	function modneg(x,y) {
		return x-Math.floor(x/y)*y;
	}
	var r = 0;
	var g = 0;
	var b = 0;
	function fadein(id) {
		document.getElementById(id).style.visibility = "visible";
		document.getElementById(id).style.color="rgb(" + r + "," + g + "," + b + ")";
		r += 16
		g += 16
		b += 16
		if(r>0)
		setTimeout("fadein('"+id+"')", 80);
	}
/*	function fadeout(id) {
		document.getElementById(id).style.visibility = "visible";
		document.getElementById(id).style.color="rgb(" + r + "," + g + "," + b + ")";
		r += 8
		g += 8
		b += 8
		if(r<255)
		setTimeout("fadeout('"+id+"')", 40);
	} */
	function golight(id) {
		document.getElementById(id).style.visibility = "visible";
		document.getElementById(id).style.color="rgb(0,0,0)";
		r = 0
		g = 0
		b = 0
	}

	var testtime = new Array()
	testtime[0]= 24;
	testtime[1]= 18;
	testtime[2]= 21;
	var tindex = new Array()
	tindex[0]= "<h1>Testimonials (1/3)</h1>"
	tindex[1]= "<h1>Testimonials (2/3)</h1>"
	tindex[2]= "<h1>Testimonials (3/3)</h1>"
	var testimonial = new Array()
	testimonial[0]= "\"Dear Sonny and Melissa:<br>&nbsp;&nbsp;&nbsp;&nbsp;\"I just want to send a short note say&shy;ing Thank you so much for this Heat pump! Since we have had it our elect bills have drop&shy;ped so much I am thrilled. Also for the first time ever I am liv&shy;ing nei&shy;ther in a house where the tem&shy;per&shy;a&shy;tures is ne&shy;ver too hot nor to cold. It is Won&shy;der&shy;ful!<br>&nbsp;&nbsp;&nbsp;&nbsp;\"I could not be hap&shy;pier and I think it sums it up when I tell you my hus&shy;band and I think this is the best thing we could have ever done for our&shy;selves! You guys were won&shy;der&shy;ful about put&shy;ting the heat pump in, keep&shy;ing in touch and mak&shy;ing sure every&shy;thing work&shy;ed as well as you said it would and it ex&shy;ceeds  all our ex&shy;pec&shy;ta&shy;tions.<br>&nbsp;&nbsp;&nbsp;\"Thank you a&shy;gain.\"<br><div style=\"text-align: right; \">Art and Laura Perkinson</div>"
	testimonial[1]= "\"Dear OnCall Heating, last summer you replaced a heat pump and furnace that I had owned for 10 years.  The old heat pump still worked, however it ran all the time and the different rooms were all different temperatures.  I wanted to upgrade because I always felt it wasn\'t done right. Well after your man installed the new units, I was amazed! ... This is the BEST thing we have ever done for our COMFORT.  Also, the savings in install &amp; purchase of the whole thing was thousands of $$$$$ dollars.  I can\'t thank you enough.\"<br><div style=\"text-align: right; \">Sincerely, Steven Ross</div>"
	testimonial[2]= "&nbsp;&nbsp;&nbsp;\"We are very pleased with our new American Standard heat pump system. You guys were very prompt, gave us some good suggestions regarding our purchase and helped us to understand how everything worked.<br>&nbsp;&nbsp;&nbsp;\"One of the things we are very pleased with is our utility bills have gone down....We were expecting our costs to go down but never this much. WOW<br>&nbsp;&nbsp;&nbsp;\"It was a pleasure working with you guys...after our installation was settled, we had to call a couple of times with questions and were treated with prompt and courteous responses.  You didn\'t just finish the sale and then drop us.  We really appreciate the follow up that you do and we would recommend On Call anytime.\"<br><div style=\"text-align: right; \">Sincerely, Connie Jackson</div>"
	var a=0;
	function display(id) {
		golight(id);
		document.getElementById('tindex').innerHTML=tindex[a]
		document.getElementById('testimonial').innerHTML=testimonial[a]
		fadein(id);
		setTimeout("display('"+id+"')",1000*testtime[a])
		a=modneg(a+1,3);
	}