// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Главная', '/about/', null,
		['История завода', '/about/history/'],
		['«Гомсельмаш» сегодня', '/about/today/']	
	],
	
	['СМИ о нас', '/press/', null,
		['Новости', '/news/']
	],
	
	['Каталог', '/catalog/01/'],
	
	['Мнения', '/forum/'],
	
	['Контакты', '/contacts/'],
];
