$(function() {
		
	$('.testimonial_full').hide();
	
	$('a.truncate').click(function(){
		$(this).parent().children(".testimonial_excerpt").toggle();
		$(this).parent().children(".testimonial_full").toggle();
		return false;
	});

});