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