// 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 = [
	['Начало', 'index.php'],
	['Колекции', null, null,
		['Жени', null, null,
			['Кожуси', 'collections.php?sex=women&type=coats'],
			['Шуби', 'collections.php?sex=women&type=furcoats'],
			['Якета', 'collections.php?sex=women&type=jackets']
		],
		['Мъже', null, null,
			['Кожуси', 'collections.php?sex=men&type=coats'],
			['Якета', 'collections.php?sex=men&type=jackets']
		],
		['Деца', 'collections.php?sex=children&type=all']
	],
	['Online магазин', null, null,
		['Жени', null, null,
			['Кожуси', 'shop.php?sex=women&type=coats'],
			['Шуби', 'shop.php?sex=women&type=furcoats'],
			['Якета', 'shop.php?sex=women&type=jackets'],
			['Панталони/Поли/Елеци', 'shop.php?sex=women&type=pants']
		],
		['Мъже', null, null,
			['Кожуси', 'shop.php?sex=men&type=coats'],
			['Якета', 'shop.php?sex=men&type=jackets'],
			['Панталони/Елеци', 'shop.php?sex=men&type=pants']
		],
		['Деца', 'shop.php?sex=children&type=all'],
		['Аксесоари', null, null,
			['Чанти', 'shop.php?sex=accessories&type=bags'],
			['Колани/Ръкавици', 'shop.php?sex=accessories&type=belts'],
			['Шапки', 'shop.php?sex=accessories&type=hats']
		],
	],
	['Контакти', 'contacts.php'],
	['За нас', 'aboutus.php'],
        ['Условия за ползване', 'terms of use.php']
];


