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

oCMenu.frames = 1

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=137 
oCMenu.fromTop=135   
oCMenu.rows=1 
oCMenu.menuPlacement="left"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=1 
oCMenu.wait=600 
oCMenu.fillImg="images/cm_fill.gif"
oCMenu.zIndex=0

//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=113
oCMenu.level[0].height=35 
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=2
oCMenu.level[0].offsetY=4
oCMenu.level[0].rows=0
oCMenu.level[0].align="bottom"
oCMenu.level[0].slidepx=10
oCMenu.level[0].slidetim=20

//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=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+30
oCMenu.level[1].offsetY=2
oCMenu.level[1].arrow="images/tri.gif"
oCMenu.level[1].arrowWidth=10
oCMenu.level[1].arrowHeight=11
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=140
oCMenu.level[2].height=20
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=0
oCMenu.level[2].regClass="clLevel2"
oCMenu.level[2].overClass="clLevel2over"
oCMenu.level[2].borderClass="clLevel2border"


/******************************************
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','','Tidwell Enterprises','http://www.tidwellinc.com','','100','24','images/home0B.gif','images/home2b.gif')
	
oCMenu.makeMenu('top1','','Masonry Projects','http://www.tidwellinc.com/masonry.htm','','180','24','images/mason0B.gif','images/mason2b.gif')
		oCMenu.makeMenu('sub11','top1','Completed Projects','http://www.tidwellinc.com/masonry_completed.htm','','150')
		oCMenu.makeMenu('sub12','top1','Commercial Gallery','http://www.tidwellinc.com/masonry_commercial_gallery.htm','','150')
		oCMenu.makeMenu('sub13','top1','Residential Gallery','http://www.tidwellinc.com/masonry_residential_gallery.htm','','150')
		oCMenu.makeMenu('sub14','top1','Outdoor Living','http://www.tidwellinc.com/masonry_outdoor.htm','','150')

oCMenu.makeMenu('top2','','Featured Projects','http://www.tidwellinc.com/masonry_featured.htm','','180','24','images/fire0B.gif','images/fire2b.gif')
	oCMenu.makeMenu('sub20','top2','Featured Projects','http://www.tidwellinc.com/masonry_featured.htm','','140')
	oCMenu.makeMenu('sub21','top2','Masonry Information','http://www.tidwellinc.com/masonry.htm','','140')
	oCMenu.makeMenu('sub22','top2','Information Request','http://www.tidwellinc.com/info.htm','','140')
			
oCMenu.makeMenu('top3','','Gallery','http://www.tidwellinc.com/gallery.htm','','120','24','images/gallery0B.gif','images/gallery2b.gif')
	oCMenu.makeMenu('sub30','top3','Project Gallery','http://www.tidwellinc.com/gallery.htm','','140')
	oCMenu.makeMenu('sub31','top3','Commercial Gallery','http://www.tidwellinc.com/masonry_commercial_gallery.htm','','140')
	oCMenu.makeMenu('sub32','top3','Residential Gallery','http://www.tidwellinc.com/masonry_residential_gallery.htm','','140')
	oCMenu.makeMenu('sub33','top3','Monuments & Signage','http://www.tidwellinc.com/masonry_monuments_signage.htm','','140')
		
oCMenu.makeMenu('top4','','Contact Tidwell','http://www.tidwellinc.com/contact.htm','','120','24','images/info0B.gif','images/info2b.gif')
	oCMenu.makeMenu('sub40','top4','Contact Us','http://www.tidwellinc.com/contact.htm','','140')
	oCMenu.makeMenu('sub41','top4','Information Request','http://www.tidwellinc.com/info.htm','','140')	
	oCMenu.makeMenu('sub42','top4','Location','http://www.tidwellinc.com/location.htm','','140')

oCMenu.makeMenu('top5','','About Tidwell','http://www.tidwellinc.com/who.htm','','150','24','images/about0B.gif','images/about2b.gif')
	oCMenu.makeMenu('sub51','top5','Our People','http://www.tidwellinc.com/who.htm','','140')
	oCMenu.makeMenu('sub52','top5','Location','http://www.tidwellinc.com/location.htm','','140')
	oCMenu.makeMenu('sub53','top5','History','http://www.tidwellinc.com/history.htm','','140')
	oCMenu.makeMenu('sub54','top5','Employment','http://www.tidwellinc.com/employment.htm','','140')


//Leave this line - it constructs the menu
oCMenu.construct()	
