// 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 = [
	['Ярмарок Кар’єри ', null, null,
		['Головна','index.php?mod=page&id=home'],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Події ','index.php?mod=page&id=events'],
		['Місце проведення', 'index.php?mod=page&id=location'],
            ['План приміщення','index.php?mod=page&id=plan'],
		['Каталог', 'index.php?mod=page&id=catalogue'],

	],
	['Розклад', null, null,
		// this is how item scope settings are defined
		['Загальний', 'index.php?mod=page&id=general'],
		// this is how multiple item scope settings are defined
		['Презентації ','index.php?mod=page&id=presentation'],
             ['Завантажити розклад','agenda.doc']
			],
	['Кар’єра', null, null,
		['Гарячі вакансії', 'index.php?mod=page&id=vacancies'],
		['Стажування', 'index.php?mod=page&id=trainee'],
		['Local BCC', 'index.php?mod=page&id=localbcc'],
		['CV-online', 'index.php?mod=page&id=cvonline']
			],
['Компанії ', null, null,
		// this is how item scope settings are defined
		['Спонсори','index.php?mod=page&id=sponsors'],
		// this is how multiple item scope settings are defined
		['Учасники','index.php?mod=page&id=participants'],
		['Партнери', 'index.php?mod=page&id=partners']
		
	],
['Круглий стіл ', null, null,
		// this is how item scope settings are defined
		['Що це?','index.php?mod=page&id=what'],
		// this is how multiple item scope settings are defined
		['Для HR-менеджерів','index.php?mod=page&id=hr'],
		['Для студентів', 'index.php?mod=page&id=students'],
		['Для медіа', 'index.php?mod=page&id=media']
			],
['Для медіа', null, null,
		// this is how item scope settings are defined
		['Прес-анонс', 'index.php?mod=page&id=press'],
		// this is how multiple item scope settings are defined
		['Прес-реліз', 'index.php?mod=page&id=release']
			],

['EJF 2007', 'index.php?mod=page&id=ejf'],
['Організатори', null, null,
		// this is how item scope settings are defined
		['BEST Lviv', 'index.php?mod=page&id=bestlviv'],
		// this is how multiple item scope settings are defined
		['Університет', 'index.php?mod=page&id=university'],
		['Команда', 'index.php?mod=page&id=team'],
		['Контакти', 'index.php?mod=page&id=contact']
		
	]
	
];

