$(function(){
    $('#about-more').click(function(e){
	e.preventDefault();
	$('#about-expanded').show('fast');
	$(this).hide();
	$('#about-less').show();
    });

    $('#about-less').click(function(e){
	e.preventDefault();
	$('#about-expanded').hide('fast');
	$(this).hide();
	$('#about-more').show();
    });

});
