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

// Menu properties   
oCMenu.pxBetween=36
oCMenu.fromLeft=442
oCMenu.fromTop=193
oCMenu.rows=1 
oCMenu.menuPlacement="left"

oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="spacer.gif"
oCMenu.zIndex=0

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

//Level properties - ALL properties have to be specified in level 0
oCMenu.level[0]=new cm_makeLevel(0) //Add this for each new level
oCMenu.level[0].width=118
oCMenu.level[0].height=33
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0 
oCMenu.level[0].borderY=0
oCMenu.level[0].borderClass=0
oCMenu.level[0].offsetX=-34
oCMenu.level[0].offsetY=2
oCMenu.level[0].rows=0
oCMenu.level[0].align="bottom" 

//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(1) //Add this for each new level (adding one to the number)
oCMenu.level[1].width=oCMenu.level[0].width+32
oCMenu.level[1].height=20
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1 
oCMenu.level[1].borderY=1
oCMenu.level[1].borderClass="clLevel1border"
oCMenu.level[1].offsetX=oCMenu.level[0].width-60
oCMenu.level[1].offsetY=-15
oCMenu.level[1].rows=0
oCMenu.level[1].style=""
oCMenu.level[1].align="bottom" 

/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

oCMenu.makeMenu('top0','','services','');
	oCMenu.makeMenu('service00','top0','Project Management','../services/serviceStub00.html');
	oCMenu.makeMenu('service01','top0','Global Sourcing','../services/serviceStub01.html');
	oCMenu.makeMenu('service02','top0','Production Cost Estimating','../services/serviceStub02.html');
	oCMenu.makeMenu('service03','top0','Product Development','../services/serviceStub03.html');
	oCMenu.makeMenu('service04','top0','Engineering Documentation','../services/serviceStub04.html');
	oCMenu.makeMenu('service05','top0','QC System Development','../services/serviceStub05.html');
	//oCMenu.makeMenu('service06','top0','NEW MENU ITEM NAME HERE','../services/serviceStub06.html');
	//oCMenu.makeMenu('service07','top0','NEW MENU ITEM NAME HERE','../services/serviceStub07.html');
	//oCMenu.makeMenu('service08','top0','NEW MENU ITEM NAME HERE','../services/serviceStub08.html');
	//oCMenu.makeMenu('service09','top0','NEW MENU ITEM NAME HERE','../services/serviceStub09.html');

oCMenu.makeMenu('top1','','technologies','');
	oCMenu.makeMenu('tech00','top1','Injection Molding','../technologies/techStub00.html');
	oCMenu.makeMenu('tech01','top1','Tooling','../technologies/techStub01.html');
	oCMenu.makeMenu('tech02','top1','Machining','../technologies/techStub02.html');
	oCMenu.makeMenu('tech03','top1','Springs & Wireforms','../technologies/techStub03.html');
oCMenu.makeMenu('tech04','top1','Casting and Die Casting','../technologies/techStub04.html');
	oCMenu.makeMenu('tech05','top1','Cold Forging','../technologies/techStub05.html');
	oCMenu.makeMenu('tech06','top1','Textile Printing & Stitching','../technologies/techStub06.html');
	oCMenu.makeMenu('tech07','top1','Assembly','../technologies/techStub07.html');
	oCMenu.makeMenu('tech08','top1','Printing & Packaging','../technologies/techStub08.html');
	//oCMenu.makeMenu('tech09','top1','NEW MENU ITEM NAME HERE','../technologies/techStub09.html');
	//oCMenu.makeMenu('tech010','top1','NEW MENU ITEM NAME HERE','../technologies/techStub10.html');
	
oCMenu.makeMenu('top2','','company','index.cfm');
	//oCMenu.makeMenu('company00','top2','Certification Processes','../company/companyStub00.html');
oCMenu.makeMenu('company01','top2','Suppliers','../company/companyStub01.html');
oCMenu.makeMenu('company02','top2','Helpful Links','../company/companyStub00.html');
oCMenu.makeMenu('company03','top2','Management Bios','../company/companyStub03.html');
	oCMenu.makeMenu('company04','top2','Contact','../company/companyStub04.html');
	//oCMenu.makeMenu('company05','top2','NEW MENU ITEM NAME HERE','../company/companyStub05.html');
	//oCMenu.makeMenu('company06','top2','NEW MENU ITEM NAME HERE','../company/companyStub06.html');

//Activate the menu
oCMenu.construct()