Text Change On Event

Text Change On Event

Hey guys,

I'm putting together a site for a pal's band.  I've got a sliding div that slides up when a link (with text) is clicked and back down when the link is clicked using:
$(function() {
 $('#bottom-blog-button a').click(function(e) {
   $('#home-content').slideToggle();
 });
});

and some corresponding CSS.  What I'd like to do is make the link that triggers the event to change text whenever the div is visible and change back when it returns to hidden (like "show div" / "hide div").  Can anyone recommend an addition to the code above to do this?

Thanks!!