$(document).ready(function() {

	// maximum box count -- change as needed but do not change any other code here
	var MAX_COUNT = 6;
	
	// hide all testimonials
	$(".testimonial-box p span").hide();
	
	for (var i = 1; i <= MAX_COUNT; i++) {
		var tempid   = "#testimonial-box" + i;	
		(function() {
			var t = i;
			$(tempid).toggle(function() {			
				$("#testimonial-box" + t + " p span").slideToggle('slow');
			}, function() {
				$("#testimonial-box" + t + " p span").slideToggle('slow');
			});		
		})();
	}	
});