$(document).ready(function() {
	
	$('.member_link li a').each(function(index) {
		$(this).click(function() {
			$.getJSON(base_url + 'team/get_description/' + $(this).attr('class'), function(data) {
				$('#name h2').empty();
				$('#name h2').append(data.name + ' - ' + data.position);
				$('#description').empty();
				$('#description').append(data.description);
			});
			return false;
		});
	});

});
