$(document).ready(function() {
	$('p.bio').hide();
    $('<span class="bio-reveal" title="show/hide biography"></span>').insertAfter('div.artist h2');
	$('span.bio-reveal').toggle(function() {
    	$(this).parent().find('p.bio').slideDown();
		$(this).addClass('bio-hide');
    }, function() {
		$(this).parent().find('p.bio').slideUp();
		$(this).removeClass('bio-hide');
	});

});	
