
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname
oCMenu.frames = 0

//Menu properties
oCMenu.pxBetween=0
oCMenu.fromLeft=200
oCMenu.fromTop=250
oCMenu.rows=1
oCMenu.menuPlacement="left"

oCMenu.offlineRoot=""
oCMenu.onlineRoot=""
oCMenu.resizeCheck=1
oCMenu.wait=300
oCMenu.fillImg="fill.gif"
oCMenu.zIndex=1

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth="0%"
oCMenu.barHeight="menu"
oCMenu.barClass="clBar"
oCMenu.barX=0
oCMenu.barY=0
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=100
oCMenu.level[0].height=30
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0
oCMenu.level[0].borderY=0
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=oCMenu.level[0].width-2
oCMenu.level[1].height=20
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=0
oCMenu.level[1].borderY=1
oCMenu.level[1].align="bottom"
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"



//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=180
oCMenu.level[2].height=20
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=0
oCMenu.level[2].regClass="clLevel1"
oCMenu.level[2].overClass="clLevel1over"
oCMenu.level[2].borderClass="clLevel1border"
oCMenu.level[2].slidepx=0

var adresa="http://www.geostud.ro/geostud-english/"
/******************************************
Menu item creation:
oMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout)
*************************************/
	oCMenu.makeMenu('top1','','Home page',adresa+'index.htm', '_self', 100)


	oCMenu.makeMenu('top2','','About GEOSTUD',adresa+'about-geostud/about-short-description.htm', '', 100)
oCMenu.makeMenu('sub2_1','top2','Short description',adresa+'about-geostud/about-short-description.htm', '', 180,20)
oCMenu.makeMenu('sub2_2','top2','Presence GEOSTUD on the map',adresa+'about-geostud/about-presence-on-the-map.htm', '', 180,20)
oCMenu.makeMenu('sub2_3','top2','Organizational chart and lead team',adresa+'about-geostud/about-organizational-chart.htm', '', 180,20)

	oCMenu.makeMenu('top3','','Geotechnical studies',adresa+'geotechnical-studies/geotechnical-studies-equipment.htm','',100)
oCMenu.makeMenu('sub3_1','top3','Equipment',adresa+'geotechnical-studies/geotechnical-studies-equipment.htm','',180,20)
oCMenu.makeMenu('sub3_2','top3','Roads and bridges',adresa+'geotechnical-studies/geotechnical-studies-roads-bridges.htm','',180,20)
oCMenu.makeMenu('sub3_3','top3','Civilian constructions',adresa+'geotechnical-studies/geotechnical-studies-constructions.htm','',180,20)
oCMenu.makeMenu('sub3_4','top3','Soil stabilization',adresa+'geotechnical-studies/geotechnical-studies-soil-stabilization.htm','',180,20)


	oCMenu.makeMenu('top4','','Environmental studies',adresa+'environmental-studies/environmental-studies-equipment.htm','',100)
oCMenu.makeMenu('sub4_1','top4','Equipment',adresa+'environmental-studies/environmental-studies-equipment.htm','',180,20)
oCMenu.makeMenu('sub4_2','top4','Impact studies',adresa+'environmental-studies/environmental-studies-impact.htm','',180,20)
oCMenu.makeMenu('sub4_3','top4','Environmental balances',adresa+'environmental-studies/environmental-studies-environmental-survey.htm','',180,20)
oCMenu.makeMenu('sub4_4','top4','Environmental monitoring studies',adresa+'environmental-studies/environmental-studies-monitoring.htm','',180,20)

oCMenu.makeMenu('top5','','Laboratories',adresa+'geosinthetics-laboratory/lgeosinthetics-laboratory.htm', '', 100)
	oCMenu.makeMenu('sub5_1','top5','Central geosinthetics laboratory',adresa+'geosinthetics-laboratory/lgeosinthetics-laboratory.htm', '', 180)
	oCMenu.makeMenu('sub5_2','top5','Environmental and chemistry laboratory',adresa+'environmental-and-chemistry-laboratory/environmental-and-chemistry-laboratory.htm', '', 180)
	oCMenu.makeMenu('sub5_3','top5','Roads tests laboratory',adresa+'road-test-laboratory/road-test-laboratory.htm', '', 180)

oCMenu.makeMenu('top6','','Contact',adresa+'about-geostud/contact.htm', '', 100)

oCMenu.construct()
