<!--
function checkChange()
{
	if(document.getElementById("testimonials1").style.zIndex == 4)
	{
		document.getElementById("testimonials1").style.zIndex = -1;
		document.getElementById("testimonials2").style.zIndex = 4;
		fader = setInterval("changeTestimonial(1)",5);
	}
	else
	{
		document.getElementById("testimonials1").style.zIndex = 4;
		document.getElementById("testimonials2").style.zIndex = -1;
		fader = setInterval("changeTestimonial(2)",5);
	}
}
function changeTestimonial(i)
{
	if(i == 1)
	{
		document.getElementById("testimonials1").style.opacity -= .01;
		document.getElementById("testimonials2").style.opacity = (parseFloat(document.getElementById("testimonials2").style.opacity) + .01);
		if(document.getElementById("testimonials1").style.opacity == 0)
			clearInterval(fader);
	}
	else
	{
		document.getElementById("testimonials2").style.opacity -= .01;
		document.getElementById("testimonials1").style.opacity = (parseFloat(document.getElementById("testimonials1").style.opacity) + .01);
		if(document.getElementById("testimonials2").style.opacity == 0)
			clearInterval(fader);
	}
}
-->