

//Menu object creation
oCMenu2=new makeCM("oCMenu2") //Making the menu object. Argument: menuname
oCMenu2.frames=0

//Menu properties   
oCMenu2.pxBetween=0
oCMenu2.fromLeft=0
oCMenu2.fromTop=200   
oCMenu2.rows=0 
oCMenu2.menuPlacement=""

oCMenu2.offlineRoot="" 
oCMenu2.onlineRoot="" 
oCMenu2.resizeCheck=1 
oCMenu2.wait=0 
oCMenu2.zIndex=0

//Background bar properties
oCMenu2.useBar=1
oCMenu2.barWidth="menu"
oCMenu2.barHeight="menu" 
oCMenu2.barClass="clBar"
oCMenu2.barX="menu"
oCMenu2.barY="menu"
oCMenu2.barBorderX=0
oCMenu2.barBorderY=0
oCMenu2.barBorderClass=""

//Level properties - ALL properties have to be specified in level 0
oCMenu2.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu2.level[0].width=135
oCMenu2.level[0].height=10
oCMenu2.level[0].regClass="clLevel20"
oCMenu2.level[0].overClass="clLevel20over"
oCMenu2.level[0].borderX=0 
oCMenu2.level[0].borderY=0
oCMenu2.level[0].borderClass="clLevel20border"
oCMenu2.level[0].offsetX=0 
oCMenu2.level[0].offsetY=0
oCMenu2.level[0].rows=1
oCMenu2.level[0].align="right" 



/*(name,parent,txt,lnk,targ,w,h,img1,img2,cl,cl2,align,rows,nolink,onclick,onmouseover,onmouseout)*/
/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
oCMenu2.makeMenu('main','','Waste<br/>Containers &amp;<br/>Ash Receptacles','','',135,47)
	oCMenu2.makeMenu('waste','main','Waste Containers <br/>&amp; Ash Urns','http://www.quickcrete.com/waste.html','',145,35)
	oCMenu2.makeMenu('sequoia','main','Sequoia Waste Receptacle ','http://www.quickcrete.com/sequoiaconcretewastecontainer.html','',135,35)
	oCMenu2.makeMenu('halocombo','main','The Waste <br/>Halo Combo','http://wwww.quickcrete.com/halocombo/index.html','_blank',130,35)
	oCMenu2.makeMenu('smokeless','main','Halo Smokeless<br/>Ash Receptacle','http://www.quickcrete.com/halo/','_blank',135,35)
	


	
oCMenu2.makeMenu('benches','','Benches','http://www.quickcrete.com/benches.html','',135,20)

oCMenu2.makeMenu('planters','','Planters','http://www.quickcrete.com/precastconcreteplanters.html','',135,20)

oCMenu2.makeMenu('treegrates','','Tree Grates','http://www.quickcrete.com/treegrates.html','',135,20)

oCMenu2.makeMenu('bollards','','Bollards','http://www.quickcrete.com/bollards.html','',135,20)

oCMenu2.makeMenu('tables','','Tables','http://www.quickcrete.com/tables.html','',135,20)

oCMenu2.makeMenu('monument','','Monument<br/>Signs','http://www.quickcrete.com/monument.html','',135,35)

oCMenu2.makeMenu('columns','','Columns','http://www.quickcrete.com/columns.html','',135,20)

oCMenu2.makeMenu('wall','','Wall &amp;<br/>Pilaster Caps','http://www.quickcrete.com/wall.html','',135,35)

oCMenu2.makeMenu('fountains','','Fountains','http://www.quickcrete.com/fountains.html','',135,20)

oCMenu2.makeMenu('balustrade','','Balustrade','http://www.quickcrete.com/balustrade.html','',135,20)

oCMenu2.makeMenu('arch','','Architectural<br/>Trim','http://www.quickcrete.com/archtrim.html','',135,35)

oCMenu2.makeMenu('perimeter','','Perimeter<br/>Security<br/>Protection','http://www.quickcrete.com/perimeter.html','',135,47)

oCMenu2.makeMenu('fences','','Fencing','http://www.quickcrete.com/concretewoodgrainfence.html','',135,20)

oCMenu2.makeMenu('custom','','Custom<br/>Products','http://www.quickcrete.com/custom.html','',135,35)

oCMenu2.makeMenu('new','','New Products','http://www.quickcrete.com/pdfs/HaloBrochure.pdf','_blank',135,20)

oCMenu2.makeMenu('arcadianmp','','Arcadian</br>Memorial</br>Products','http://www.arcadianmp.com','_blank',135,47)

oCMenu2.makeMenu('nvcs','','Napa Valley</br>Cast Stone','http://www.napavalleycaststone.com','_blank',135,35)

//oCMenu2.makeMenu('APALogo','','','index.html','_blank','64','32','images/logo_APA.gif','images/logo_APA.gif','clLevel20overicon','clLevel20overicon')

oCMenu2.makeMenu('space','','','','',135,'','','','','clLevel20')

//oCMenu2.makeMenu('GSALogo','','','index.html','_blank',56,55,'images/logo_GSA.gif','','','','center')

//oCMenu2.makeMenu('space2','','','','',135)

//oCMenu2.makeMenu('CMASLogo','','','index.html','_blank',64,32,'images/EcocastCMAS.gif')


//Leave this line - it constructs the menu
oCMenu2.construct()		

