function ExpandMenu(menuID)
{
	if ($(menuID).visible())
		$(menuID).hide();
	else
		$(menuID).show();
}