var openDisplay = "block";
var closedDisplay = "none";

// expandit function calls toggleSection function after a
// short delay so that images display correctly
function expandit(itemId)
{
	window.setTimeout("toggleSection('" + itemId + "')",10);
}

// toggleSection function opens or closes menu section 
function toggleSection(itemId) {
	var item;
		
	if (document.all)	
		for (i = 0; i < document.all.length; i++)
			if (itemId == document.all(i).id)
				item = document.all(i);		// изменяем состояния раздела каталога, на котором щелкнули мышкой
			else if (document.all(i).id.indexOf("_menu_Section") == 0)
				document.all(i).style.display = closedDisplay;		// закрываем остальные подразделы
	
	if (typeof(item) == "undefined")
		return;
	        
	if (item.style.display == closedDisplay) {
		item.style.display = openDisplay;
	}
	else {
		item.style.display = closedDisplay;		
	}
	
	return;
}


