$(document).ready(function(){ 
	$('.testimonial a.getMore').click( function(e) {
		e.preventDefault();
		
		$(this).parent().parent().find('.more').show(500);
		$(this).parent().parent().find('.getMore').parent().remove();
	});
});