//<!--
function menuLeft(id,parentId,text,url,isFirst) {
	this.id=id;
	this.parentId=parentId;
	this.children=new Array();
	if(parentId != '') {
		menuLeftList[parentId].children[menuLeftList[parentId].children.length]=id;
		this.level=menuLeftList[parentId].level+1;
	} else this.level=0;
	this.text=text;
	this.url=url;
	this.isFirst=isFirst;
	return this;
}
menuLeftList = new Array();


pMenus[pMenus.length] = 'mt100';
menuLeftList['100']=new menuLeft('100','',"Структура Служби",'about.htm','yes');

menuLeftList['101']=new menuLeft('101','100',"АУП",'office.htm','yes');
menuLeftList['102']=new menuLeft('102','100',"Київський ПДВСКН",'region1.htm#030','no');
menuLeftList['103']=new menuLeft('103','100',"Бориспільський ПДВСКН",'region1.htm#040','no');
menuLeftList['104']=new menuLeft('104','100',"Житомирський ПДВСКН",'region2.htm#020','no');
menuLeftList['105']=new menuLeft('105','100',"Овруцький ПДВСКН",'region2.htm#026','no');
menuLeftList['106']=new menuLeft('106','100',"Вінницький ПДВСКН",'region3.htm#010','no');
menuLeftList['107']=new menuLeft('107','100',"Козятинський ПДВСКН",'region3.htm#012','no');
menuLeftList['108']=new menuLeft('108','100',"М-Подільський ПДВСКН",'region3.htm#013','no');
menuLeftList['109']=new menuLeft('109','100',"Конотопський ПДВСКН",'region4.htm#053','no');
menuLeftList['110']=new menuLeft('110','100',"Х-Михайловський ПДВСКН",'region4.htm#055','no');
menuLeftList['111']=new menuLeft('111','100',"Хмельницький ПДВСКН",'region5.htm#060','no');
menuLeftList['112']=new menuLeft('112','100',"Шепетівка ПДВСКН",'region5.htm#063','no');
menuLeftList['113']=new menuLeft('113','100',"Чернігівський ПДВСКН",'region6.htm#070','no');
menuLeftList['114']=new menuLeft('114','100',"Н-Сіверський ПДВСКН",'region6.htm#072','no');
menuLeftList['115']=new menuLeft('115','100',"Н-Яриловичі ПДВСКН",'region6.htm#074','no');
menuLeftList['116']=new menuLeft('116','100',"Щорс ПДВСКН",'region6.htm#077','no');


pMenus[pMenus.length] = 'mt200';
menuLeftList['200']=new menuLeft('200','',"Нормативні документи",'doc.htm','no');

menuLeftList['201']=new menuLeft('201','200',"Закони",'doc.htm#law','yes');
menuLeftList['202']=new menuLeft('202','200',"Положення та постанови",'doc.htm#resol','no');
menuLeftList['203']=new menuLeft('203','200',"Накази",'doc.htm#order','no');
menuLeftList['204']=new menuLeft('204','200',"Інструкції",'doc.htm#instr','no');


pMenus[pMenus.length] = 'mt300';
menuLeftList['300']=new menuLeft('300','',"До відома суб'єктів",'info.htm','no');

menuLeftList['301']=new menuLeft('301','300',"Епізоотична ситуація у світі від МЕБ",'info/oie0005.htm','yes');
menuLeftList['302']=new menuLeft('302','300',"Перелік заборон по країнам світу",'info/tabu001.htm','no');
menuLeftList['303']=new menuLeft('303','300',"Зразки ветеринарних сертифікатів",'info/sert001.htm','no');
menuLeftList['304']=new menuLeft('304','300',"Перелік препаратів зареєстрованих в Україні",'info/prep.php','no');
menuLeftList['305']=new menuLeft('305','300',"Перелік вантажів, які підлягають вет. кнтролю.",'info/code001.htm','no');


menuLeftList['400']=new menuLeft('400','',"Наші консультації",'consult.htm','no');
menuLeftList['500']=new menuLeft('500','',"Тендерний комітет",'tender.htm','no');


pMenus[pMenus.length] = 'mt600';
menuLeftList['600']=new menuLeft('600','',"Лінки",'links.htm','no');

menuLeftList['601']=new menuLeft('601','600',"Органи державної влади України",'links.htm#gov','yes');
menuLeftList['602']=new menuLeft('602','600',"Інші регіональні Служби",'links.htm#vet','no');
menuLeftList['603']=new menuLeft('603','600',"Ветеринарні Служби країн світу",'links.htm#worldvet','no');
menuLeftList['604']=new menuLeft('604','600',"Інші сайти",'links.htm#other','no');


menuLeftList['700']=new menuLeft('700','',"Архів",'archiv.html','no');

menuLeftList['800']=new menuLeft('800','',"Напишіть листа",'mailto:support@vetcontrol.org','no');

//-->