function toggleContent(hrefId)
{
	var hrefCollection =  document.getElementById('testimonials-left').getElementsByTagName('A');
	for(var hc=0;hc<hrefCollection.length;hc++) {
		hrefCollection[hc].className = "isNotActive";
	}
	
	var contentCollection =  document.getElementById('testimonials-right').getElementsByTagName('DIV');
	for(var cc=0;cc<contentCollection.length;cc++) {
		contentCollection[cc].style.display = "none";
	}
	
	if(document.getElementById(hrefId)) {
		document.getElementById(hrefId).className = "isActive";
	}
	if(document.getElementById('testimonial-' + hrefId)) {
		document.getElementById('testimonial-' + hrefId).style.display = "block";
	}

};
