$(document).ready( function(){
	$("div.contenedor_testimonios dl dt a").click(function(){
		$(this).parent().next('dd.respuesta').toggle();
		return false;
	});
});