jQuery(function(){
	jQuery('#plugPubs h4 + ul').hide();
	jQuery('#plugPubs h4 a').click(function(){ 
		$ul = jQuery(this).parent().next('ul');
		
		if( $ul.length ) {
			$ul.slideToggle();
			return false;
		} // if
		
		// No trailing UL, use the link.
		return true;
	});
});