jQuery(function($) 
{ 
  $('#staff p').hide();
  $('#staff h3').addClass('link');
  if(/MSIE [6]/.test(navigator.userAgent))
  {
	$('#staff h3').click(function(){
    	$(this).next('p').toggle();
  	});  
  }
  else
  {
	  $('#staff h3').toggle(
			function(){$(this).next('p').fadeIn('normal');}, 
			function(){$(this).next('p').fadeOut('normal');
	  });
  }
  
  
  //$('#stafflist div.biography').hide();
  $('#stafflist h3').addClass('link');
  if(/MSIE [6]/.test(navigator.userAgent))
  {
	$('#stafflist h3').click(function(){
    	$(this).next('div.biography').toggle();
  	});  
  }
  else
  {
	  $('#stafflist h3').toggle(
			function(){$(this).next('div.biography').fadeOut('normal');}, 
			function(){$(this).next('div.biography').fadeIn('normal');
	  });
  }
}); 
