jQuery(document).ready(function(){
	$('#documents h3').click(function() {
		$(this).next().toggle('fast');
		return false;

	}).next().hide();
});

jQuery(document).ready(function(){
	$('#archived-bulletins h3').click(function() {
		$(this).next().toggle('fast');
		return false;

	}).next().hide();
});
