I feel as though this fairly simple and probably a common problem, but i need to change the text back to it original state on a second click,
$('#about').hide();
$('#about-btn').click(function(){
$('#about').toggle('down'),
$(this).text('close');
});
It stays with the words closed and I need it to switch about when the element is toggled.
DEMO: http://jsfiddle.net/pX4QW/