//Menu object creation
oCMenu3=new makeCM("oCMenu3") //Making the menu object. Argument: menuname

oCMenu3.frames=0

//Menu properties   
oCMenu3.pxBetween=0
oCMenu3.fromLeft=138 //If you don't change this, the menu will not end up in the right place
oCMenu3.fromTop=174  //If you don't changet his, the menu will not end up in the right place
oCMenu3.rows=1 
oCMenu3.menuPlacement=""
                                                             
oCMenu3.offlineRoot="" 
oCMenu3.onlineRoot="" 
oCMenu3.resizeCheck=1 
oCMenu3.wait=500 
oCMenu3.zIndex=0

//Background bar properties
oCMenu3.useBar=0
oCMenu3.barWidth="100%"
oCMenu3.barHeight="menu" 
oCMenu3.barClass="clBar"
oCMenu3.barX=0 
oCMenu3.barY=0
oCMenu3.barBorderX=0
oCMenu3.barBorderY=0
oCMenu3.barBorderClass=""

//Level properties - ALL properties have to be specified in level 0
oCMenu3.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu3.level[0].width=160.75
oCMenu3.level[0].height=27 
oCMenu3.level[0].regClass="clLevel30"
oCMenu3.level[0].overClass="clLevel30over"
oCMenu3.level[0].borderX=0
oCMenu3.level[0].borderY=0
oCMenu3.level[0].borderClass="clLevel30border"
oCMenu3.level[0].offsetX=0
oCMenu3.level[0].offsetY=0
oCMenu3.level[0].rows=0
oCMenu3.level[0].arrow=0
oCMenu3.level[0].arrowWidth=0
oCMenu3.level[0].arrowHeight=0
oCMenu3.level[0].align="bottom"





oCMenu3.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu3.level[1].width=94
oCMenu3.level[1].height=27
oCMenu3.level[1].regClass="clLevel31"
oCMenu3.level[1].overClass="clLevel31over"
oCMenu3.level[1].borderX=1
oCMenu3.level[1].borderY=1
oCMenu3.level[1].align="right" 
oCMenu3.level[1].offsetX=0
oCMenu3.level[1].offsetY=0
oCMenu3.level[1].borderClass="clLevel31border"
//dynamic effect
//oCMenu3.level[1].clippx=2
//oCMenu3.level[1].cliptim=2
//special animation filters
oCMenu3.level[1].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)" 
/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/



//http://www.quickcrete.com/materials.html
//http://www.quickcrete.com/generalcleaning.html



oCMenu3.makeMenu('generalinfo','','General Information','','',140,27)
	oCMenu3.makeMenu('materials','generalinfo','Materials','http://www.quickcrete.com/materials.html','',140,25)
	oCMenu3.makeMenu('warranty','generalinfo','Warranty','#','',140,25)
	oCMenu3.makeMenu('cleaning','generalinfo','General Cleaning <br>and Maintenance','http://www.quickcrete.com/generalcleaning.html','',140,35)		
	oCMenu3.makeMenu('repair','generalinfo','Repair','#','',140,25)
oCMenu3.makeMenu('surfaceselect','','Surface Selection Guide','../surface.html','',147,27)
oCMenu3.makeMenu('profiles','','Quick Ship Program','../halo/quickship.html','',150,27)
oCMenu3.makeMenu('literature','','&nbsp;&nbsp;Request Literature','../literature.html','',110,27)
oCMenu3.makeMenu('quote','','Quotes','../quote.html','',96,27)
//oCMenu3.makeMenu('search','','See Halo Video','','',160,27)
//oCMenu3.makeMenu('coming','search','Coming Soon','#','',159,27)

//Leave this line - it constructs the menu
oCMenu3.construct()



//Pop-up windows for the Project Profile images and CAD drawings
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
