var menu_active_div;

function submenu(id)
{
	menu_active_div = document.getElementById(id);
	if (menu_active_div.style.height == "0px" || menu_active_div.style.height == "") 
	{
		menu_active_div.style.height = "auto";
		menu_active_div.style.display = "block";
	}
	else 
	{
		menu_active_div.style.display = "none";
		menu_active_div.style.height = "0px";
	}
}
 
