jQuery(document).ready(function($){
	// Collapse everything but the first menu:
	$("ul.menu > li > a").not(":AAA").find("+ ul").slideUp(1);
	
	// Expand or collapse:
	$("ul.menu > li > a").click(function() {
		$(this).find("+ ul").slideToggle("fast");
		return false;
	});
});