$(document).ready(function(){
		$("dd:not(:none)").hide();
		$("dt a").click(function(){
            if ($(this).parent().next().is(':visible')) {
                hideAll();
            }
            else {
    			$("dd:visible").slideUp("slow");
    			$(this).parent().next().slideDown("slow");
            }
			return false;
		});
});

$(document).ready( function() { $(".menu:first").before('\
	<a style="float: left; font-weight: normal;" href="javascript:expandAll();">Expand All</a> \
	<a style="float: right; font-weight: normal;" href="javascript:hideAll();">Hide All</a><div style="clear:both;"></div> ');
});

function expandAll() {
	$("dt").siblings().slideDown("slow");
}
function hideAll() {
	$("dt").siblings().not("dt").slideUp("slow");
}

