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

oCMenu3.frames=0

//Menu properties   
oCMenu3.pxBetween=0
oCMenu3.fromLeft=0 //If you don't change this, the menu will not end up in the right place
oCMenu3.fromTop=175  //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=28 
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=28
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) 
*************************************/

oCMenu3.makeMenu('blank','','','','',197,27)
oCMenu3.makeMenu('generalinfo','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General Information','','',160,27)
	oCMenu3.makeMenu('materials','generalinfo','Materials','http://www.quickcrete.com/materials.html','',160,25)
	oCMenu3.makeMenu('warranty','generalinfo','Warranty','#','',160,25)
	oCMenu3.makeMenu('cleaning','generalinfo','General Cleaning <br>and Maintenance','http://www.quickcrete.com/generalcleaning.html','',160,35)		
	oCMenu3.makeMenu('repair','generalinfo','Repair','#','',160,25)
oCMenu3.makeMenu('surfaceselect','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Surface Selection Guide','http://www.quickcrete.com/surface.html','',200,27)
oCMenu3.makeMenu('gsacmas','','&nbsp;&nbsp;&nbsp;&nbsp;GSA/CMAS','govtcont.html','',110,27)
oCMenu3.makeMenu('gen2','','&nbsp;&nbsp;&nbsp;&nbsp;Gen2','http://www.quickcrete.com/gen2.html','',113,27)
//oCMenu3.makeMenu('profiles','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Project Profiles','profiles.html','',178,27)
//oCMenu3.makeMenu('search','','Search by Project','','',135,27)
	//oCMenu3.makeMenu('amusement','search','Amusement Parks','#','',133,25)
	//oCMenu3.makeMenu('who','search','Corporate','#','',133,25)
	//oCMenu3.makeMenu('mission','search','Education','#','',133,25)		
	//oCMenu3.makeMenu('conduct','search','Health Care','#','',133,25)
	//oCMenu3.makeMenu('job','search','Masterplanned <br>Communities','#','',133,38)
	//oCMenu3.makeMenu('retail','search','Parks & Recreation','#','',133,25)
	//oCMenu3.makeMenu('museum','search','Public Works','#','',133,25)
	//oCMenu3.makeMenu('sesa','search','Sports Parks & </br>Stadiums','#','',133,38)
//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);
}
