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

