$(function(){
	
	$('#add_fellow_student_link').click(function(){
		
		$(this).fadeOut(50,function(){
			$(this).remove(0);
			$('#add_fellow_student').fadeIn();
		});
		
		return false;
	});
	
	$('a.faculty_member').click(function(){
		
		var id = $(this).attr('id').replace('member','');
		
		$('#faculty_members_bio').load('faculty.member.php?m='+id,function(){
			$('#faculty_members_bio').fadeIn(function(){
				$('#member_close').click(function(){
					$('#faculty_members_bio').fadeOut(function(){
						$(this).css('display','none');
					});
					return false;
				});
			});
		});
		return false;
	});
	
});