	// do not delete the next two lines
	var strLocation = document.location;
	strLocation = strLocation.toString();

	//Menu object creation
	oM=new makeCM("oM") //Making the menu object. Argument: menuname

	var strDevServer = false;
	var strOtherServer = false;
	
	var strDevServerURL = "http://www2.asce-bechtel-center.org";
	var strDevServerSSL = "http://www2.asce-bechtel-center.org";
	var strPrdServerURL = "http://www.asce-bechtel-center.org";
	var strPrdServerSSL = "http://www.asce-bechtel-center.org";
	
	if(document.URL.toLowerCase().indexOf("2.asce") >= 0){
	   strDevServer = true;
	}
	
	if(document.URL.toLowerCase().indexOf("https") == 0){
		if(strDevServer == true){
			oM.onlineRoot=strDevServerSSL;
			oM.offlineRoot=strDevServerSSL;
		}
		else if(strOtherServer == true){
			if(strDevServer == true){
				oM.onlineRoot=strDevServerSSL;
				oM.offlineRoot=strDevServerSSL;
			}
			else{
				oM.onlineRoot=strPrdServerSSL;
				oM.offlineRoot=strPrdServerSSL;
			}
		}
		else{
			oM.onlineRoot=strPrdServerSSL;
			oM.offlineRoot=strPrdServerSSL;
		}
	}
	else{
		if(strDevServer == true){
			oM.onlineRoot=strDevServerURL;
			oM.offlineRoot=strDevServerURL;
		}
		else if(strOtherServer == true){
			if(strDevServer == true){
				oM.onlineRoot=strDevServerURL;
				oM.offlineRoot=strDevServerURL;
			}
			else{
				oM.onlineRoot=strPrdServerURL;
				oM.offlineRoot=strPrdServerURL;
			}
		}
		else{
			oM.onlineRoot=strPrdServerURL;
			oM.offlineRoot=strPrdServerURL;
		}
	}

	oM.frames = 0
	
	//Menu properties   
	oM.pxBetween=0
	oM.fromLeft=0 
	oM.fromTop=107
	var strLeft = 0;   
	oM.rows=1 
	oM.menuPlacement="left"
	oM.resizeCheck=1 
	oM.wait=1000 
	oM.fillImg=""
	oM.zIndex=300
	
	//Background bar properties
	oM.useBar=0
	oM.barWidth="menu"
	oM.barHeight="menu" 
	oM.barClass="clBar"
	oM.barX=0 
	oM.barY=0
	oM.barBorderX=0
	oM.barBorderY=0
	oM.barBorderClass=""

	//level properties
	//create menu properties (width, height, regClass, overClass, borderX, borderY, borderClass, rows, align, offsetX, offsetY, arrow, arrowWidth, arrowHeight)	
	oM.level[0]=new cm_makeLevel(157,26,"clT","clTover",0,0,"clBar",0,"bottom",strLeft,0,0,0,0);
	oM.level[1]=new cm_makeLevel(180,20,"clS","clSover",1,1,"clBorder",0,"bottom",-20,-1,'',5,5);
	oM.level[2]=new cm_makeLevel(200,20,"clS","clSover",1,1,"clBorder", 0, "bottom", 0,0,0,0,0);
	
	//create menu ('menu number','parent number','text','link','image width','image height','image path')
	//name,parent,txt,lnk,targ,w,h,img1,img2,cl,cl2,align,rows,nolink,onclick,onmouseover,onmouseout
	oM.makeMenu('a1','','Who we are','/who/who.cfm','','97','24',"/graphics/whobutton.jpg",'','','','','','','','','');
	oM.makeMenu('a2','','Room Features','/room/room.cfm','','112','23',"/graphics/otherinfo_button.jpg");
		oM.makeMenu('a2b1','a2','Gallery','/room/roomgallery.cfm','','','',"");
		oM.makeMenu('a2b2','a2','Value For Your Investment','/room/floorplan.cfm','','','',"");
		oM.makeMenu('a2b3','a2','Room Rates','/room/roomrates.cfm','','','',"");
		oM.makeMenu('a2b4','a2','Catering Guide','/room/catering.cfm','','','',"");

	oM.makeMenu('a3','','Meeting Room Seating Chart','/seat/seating.cfm','','184','24',"/graphics/seatingbutton.jpg");
	oM.makeMenu('a4','','Aduio/Visual','/av/av.cfm','','97','24',"/graphics/avbutton.jpg");
	oM.makeMenu('a5','','Contact Us','/contact/contact.cfm','','96','24',"/graphics/contactbutton.jpg");
	oM.makeMenu('a6','','Other Links','/links/links.cfm','','90','24',"/graphics/linksbutton.jpg");
	oM.makeMenu('a7','','ASCE','http://www.asce.org','','104','24',"/graphics/homebutton.jpg");
	oM.construct()

