
function toggleTestimonial(){
	var toTog = document.getElementById('fullTestimonial');
	var toTogB = document.getElementById('briefTestimonial');
	var toTogL = document.getElementById('testimonialDis');
	
	if(toTog.className == 'fullTestimonialOff')
	{
		toTog.className = 'fullTestimonialOn';
		toTogB.className = 'briefTestimonialOff';
		toTogL.innerHTML = '';
	
	} else if(toTog.className == 'fullTestimonialOn')
	{
		toTog.className = 'fullTestimonialOff';
		toTogB.className = 'briefTestimonialOn';
		toTogL.innerHTML = 'Learn More';
	}
}

