function togglefeaturemenu(id) {

	var tr = document.getElementById('featuresection_'+id); 
  	if (tr==null) { return; } 
  	var bExpand = tr.style.display == ''; 
  	tr.style.display = (bExpand ? 'none' : '');
	
	//This is built for the topfeatures.cfm for PPM and causes an arrow to rotate when clicked.
	if (bExpand) {
		//document.getElementById('fImage_'+id).src = jswebsiteroot+'/images/features/arrow_right.gif';
	} else {
		//document.getElementById('fImage_'+id).src = jswebsiteroot+'/images/features/arrow_down.gif';
	}
	//jswebsiteroot variable is defined on the template file. 
}

function toggletestimonialmenu(id) {

	var tr = document.getElementById('testimonialsection_'+id); 
  	if (tr==null) { return; } 
  	var bExpand = tr.style.display == ''; 
  	tr.style.display = (bExpand ? 'none' : '');
	
	//This is built for the topfeatures.cfm for PPM and causes an arrow to rotate when clicked.
	if (bExpand) {
		//document.getElementById('fImage_'+id).src = jswebsiteroot+'/images/features/arrow_right.gif';
	} else {
		//document.getElementById('fImage_'+id).src = jswebsiteroot+'/images/features/arrow_down.gif';
	}
	//jswebsiteroot variable is defined on the template file. 
}

function toggleclientmenu(id) {

	var tr = document.getElementById('clientsection_'+id); 
  	if (tr==null) { return; } 
  	var bExpand = tr.style.display == ''; 
  	tr.style.display = (bExpand ? 'none' : '');
	
	//This is built for the topfeatures.cfm for PPM and causes an arrow to rotate when clicked.
	if (bExpand) {
		//document.getElementById('fImage_'+id).src = jswebsiteroot+'/images/features/arrow_right.gif';
	} else {
		//document.getElementById('fImage_'+id).src = jswebsiteroot+'/images/features/arrow_down.gif';
	}
	//jswebsiteroot variable is defined on the template file. 
}
