function showTestimonial(id)
{
	for(i = 1;i <= 3;i++)
	{
		if(id != i)
		{
			document.getElementById("testimonial"+i).style.display = 'none';
			document.getElementById("photo"+i).src = 'images/testimonial'+i+'.png';
		}
	}
	document.getElementById("testimonial"+id).style.display = 'block';
	document.getElementById("photo"+id).src = 'images/testimonial'+id+'_o.png';

}

function showTestimonialNew(id)
{
	for(i = 1;i <= 3;i++)
	{
		if(id != i)
		{
			document.getElementById("testimonial"+i).style.display = 'none';
		}
	}
	document.getElementById("testimonial"+id).style.display = 'block';
}
