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

