$(document).ready(function() {
				// Collapse everything but the first menu:
				$("#Menu > dt").find("+ dd"). toggle("slow");
				$("#Menu > dt:first").find("+ dd").slideDown("slow");
				
				// Expand or collapse:
				$("#Menu > dt").click(function() {
					$(this).find("+ dd").toggle("slow");
					return false;
				});
			});