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


