$(function(){

	$('ul.People li').each(function(){
	
		var Profile = $('<a href="#" class="ProfileToggle closed">View Profile&nbsp;</a>');	//	<img src="img/arrow.gif" alt="" />
		var ProfileX = Profile.clone().text('X');
	
		$(this).find('div.Profile').append(ProfileX).hide();
		$(this).append(Profile);
	
	});

	$('a.ProfileToggle').click(function(){
	
		var profile = $(this).parents('li').find('a.ProfileToggle').toggleClass('closed').end().find('div.Profile');
		
		profile.stop().slideToggle(function(){ $(this).css('height', 'auto')});

		return false;
	});

});