$(document).ready(function() {
	
	$(".text").not(".text:first").hide();
	
	$(".name").click(function(){
		$(".text").not($(this).next()).hide();
		$(this).next().toggle();
	});
	
});
