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');
	  });
  }
}); 