$(function()
{
	$('.more').hide();

	$('.read').click(function()
	{
		$(this).parents('.colaborador:first').next().slideDown()
		$(this).hide();
		return false;
	});
	$('.more .close').click(function()
	{
		$this = $(this);
		$this.parents('.more').slideUp(function(){$this.parents('.more').prevAll('.colaborador:first').find('a.read').show();});
		
		return false;
	})
});