/*
$(function(){
  var text = Drupal.t('Read artist bio');
  var closeText = '[' + Drupal.t('Close') + ']';
  var $newDiv = $('<div></div>').addClass('show-toggle');
  $("div.bio p:not(:first)").wrapAll($newDiv);
  $('div.show-toggle').hide();
  $('div.bio p').show();
  var height;
  var orig_height = $('div.bio').height();
  $('a.toggle-bio').text(text).show().click(function(){
    $('div.show-toggle').slideToggle('fast', function(){
      if ($('a.toggle-bio').text() == text) {
        $('a.toggle-bio').text(closeText);
        height = $('div.bio').height();
        $('div.bio').css('height', height);
      }
      else {
        $('a.toggle-bio').text(text);
        $('div.bio').css('height', '');
      }
    });
    return false;
  });
});
*/