
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties  - adjust these left and top to align the menu correctly   
oCMenu.pxBetween=2
oCMenu.fromLeft=20
oCMenu.fromTop=86
oCMenu.rows=6
//adjust rows to make the menu a drop down instead of drop out
oCMenu.menuPlacement="left"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=200 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="menu"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX="menu"
oCMenu.barY="menu"
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//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=120
oCMenu.level[0].height=13 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="right"

//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=200
oCMenu.level[1].height=15
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="left" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"
oCMenu.level[1].align="top" 



//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=oCMenu.level[0].width
oCMenu.level[2].height=15
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"

//this is where you can make the menus - first entry is the level name, second is the parent name - it shows
//when you roll over the parent.  last is whether you want the menu to pop out to the left, bottom, right, top 
//of the parent. 
 


	
oCMenu.makeMenu('top1','','Accounting Services','/services.htm','','','','','','','','bottom')
	
oCMenu.makeMenu('top2','','&nbsp;&nbsp;Financial Planning','financial.htm','','','','','','','','bottom')

oCMenu.makeMenu('top3','','&nbsp;&nbsp;Mortgage Services','/mortgage.htm','','','','','','','','bottom')	
	
oCMenu.makeMenu('top4','','&nbsp;&nbsp;Our Mission','/about.htm','','','','','','','','bottom')

oCMenu.makeMenu('top5','','&nbsp;&nbsp;Contact Us','/contact.htm','','','','','','','','')

oCMenu.makeMenu('top6','','&nbsp;&nbsp;Home','/','','','','','','','','')

//Leave this line
oCMenu.construct()			