//<!--
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','',"P3-Products",'p3/index.htm','no');

menuLeftList['101']=new menuLeft('101','100',"Презентация",'p3/index.htm','yes');
menuLeftList['102']=new menuLeft('102','100',"Описания продуктов",'p3/def001.htm','no');


pMenus[pMenus.length] = 'mt200';
menuLeftList['200']=new menuLeft('200','',"Agri-Products",'Agri/index.htm','no');

menuLeftList['201']=new menuLeft('201','200',"Презентация",'Agri/index.htm','yes');
menuLeftList['202']=new menuLeft('202','200',"Описания продуктов",'Agri/def001.htm','no');


menuLeftList['300']=new menuLeft('300','',"Сертификаты",'doc/access.htm','no');


menuLeftList['400']=new menuLeft('400','',"Коммерческое предложение",'business.htm','no');


menuLeftList['500']=new menuLeft('500','',"Архив",'archive.htm','no');


menuLeftList['600']=new menuLeft('600','',"Напишите письмо",'mailto:eco-service@eco-service.com.ua','no');


//-->
