$(document).ready(function(){
	$("div#content h3:first").before('<p class="minor">Click on a category below to view links for that category.</p>');
	$("div#content h3").addClass('expand');
	$("ul.link_list").hide();
			
	$("div#content h3").click(function(){
		$(this).toggleClass('expand').toggleClass('contract').next().toggle();
	});

	if (window.location.hash) {
		$('#content').find('h3'+ window.location.hash).removeClass('expand').addClass('contract').next().show();
	}

});
