	$(document).ready(function(){
		$("#primaryContent ul:not(:first)").hide();
		$("h2 a").click(function(){
			$("#primaryContent ul:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");
			return false;
		});
	});