// JavaScript Document

$j(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $j('div[class^=morebio]').hide();
 // shows the slickbox on clicking the noted link  
  $j('a#slick-show').click(function() {
    $j('#slickbox').show('slow');
    return false;
  });
 // hides the slickbox on clicking the noted link  
  $j('a#slick-hide').click(function() {
    $j('#slickbox').hide('fast');
    return false;
  });
 
 $j('a[class^=bio]').click(function() {
var $jthis = $j(this);
var x = $jthis.attr("className");
$j('.more' + x).toggle(400);
$j(this).text($j(this).text() == 'Show List' ? 'Hide List' : 'Show List');
return false;
});
});