$(function(){
	var init_text = $(".depoimento blockquote em").text();
	$(".depoimento blockquote em").html(	
		init_text.substr(0,350) + "..."
	).parent().append('<br><br><a href="#" class="updown">Mostrar</a>');
	
	$(".updown").click(function(){
		if($(this).text() == "Mostrar"){
			$(this).text("Ocultar").parent().find("em").text(init_text);
			$(this).css("background-position","left -11px");

		}else{
			$(this).text("Mostrar").parent().find("em").text(init_text.substr(0,350) + "...");
			$(this).css("background-position","left 2px");			
		}
		return(false);
	});
	
});
