//Menu object creation
oCMenu2=new makeCM("oCMenu2") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu2.pxBetween=0
oCMenu2.fromLeft=-1 
oCMenu2.fromTop=-13   
oCMenu2.rows=1 
oCMenu2.menuPlacement="left"
     
//Add resize to resize the first one also----
//oCMenu2.onresize="oCMenu.construct(1)"
		                                                         
oCMenu2.offlineRoot="" 
oCMenu2.onlineRoot="" 
oCMenu2.resizeCheck=1
oCMenu2.wait=200 
oCMenu2.fillImg=""
oCMenu2.zIndex=0

//Background bar properties
oCMenu2.useBar=0
oCMenu2.barWidth="100%"
oCMenu2.barHeight="menu" 
oCMenu2.barClass="cl2Bar"
oCMenu2.barX=0 
oCMenu2.barY=0
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=140
oCMenu2.level[0].height=23
oCMenu2.level[0].regClass="cl2Level0"
oCMenu2.level[0].overClass="cl2Level0over"
oCMenu2.level[0].borderX=1
oCMenu2.level[0].borderY=1
oCMenu2.level[0].borderClass="cl2Level0border"
oCMenu2.level[0].offsetX=-1
oCMenu2.level[0].offsetY=0
oCMenu2.level[0].rows=0
oCMenu2.level[0].arrow=0
oCMenu2.level[0].arrowWidth=0
oCMenu2.level[0].arrowHeight=0
oCMenu2.level[0].align="bottom"


//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
oCMenu2.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu2.level[1].width=oCMenu2.level[0].width-2
oCMenu2.level[1].height=22
oCMenu2.level[1].regClass="cl2Level1"
oCMenu2.level[1].overClass="cl2Level1over"
oCMenu2.level[1].borderX=1
oCMenu2.level[1].borderY=1
oCMenu2.level[1].align="right" 
oCMenu2.level[1].offsetX=-(oCMenu2.level[0].width-2)/2+20
oCMenu2.level[1].offsetY=0
oCMenu2.level[1].borderClass="cl2Level1border"


/******************************************
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('top0','','','','',1,'','images/mnu_end.jpg','','','','','','nolink')
oCMenu2.makeMenu('top1','','Home','default.htm','',46)

oCMenu2.makeMenu('top2','','','','',1,'','images/mnu_separator.jpg','','','','','','nolink')
oCMenu2.makeMenu('top3','','Who we are','','',88,'','','','','overClass')
	oCMenu2.makeMenu('sub31','top3','Who we are','who.htm','',210)
	oCMenu2.makeMenu('sub32','top3','Fee-for-service vs commissions','fees_fee-for-service_vs_commissions.htm','',210)
	oCMenu2.makeMenu('sub33','top3','Work for us','contact_jobs.htm','',210)
	oCMenu2.makeMenu('sub34','top3','Financial Services Guide (FSG)','fsg.htm','',210)

oCMenu2.makeMenu('top4','','','','',1,'','images/mnu_separator.jpg','','','','','','nolink')
oCMenu2.makeMenu('top5','','Our services','','',93,'','','','','overClass')
	oCMenu2.makeMenu('sub51','top5','Financial advice','financial_advice.htm','',230)
	oCMenu2.makeMenu('sub53','top5','Free seminars','seminars.html','',230)
	oCMenu2.makeMenu('sub54','top5','Financial Services Guide (FSG)','fsg.htm','',230)

oCMenu2.makeMenu('top6','','','','',1,'','images/mnu_separator.jpg','','','','','','nolink')
oCMenu2.makeMenu('top7','','Our fees','','',66,'','','','','overClass')
	oCMenu2.makeMenu('sub71','top7','Average cost for advice','fees.htm','',210)
	oCMenu2.makeMenu('sub72','top7','Fee-for-service vs commissions','fees_fee-for-service_vs_commissions.htm','',210)

oCMenu2.makeMenu('top8','','','','',1,'','images/mnu_separator.jpg','','','','','','nolink')
oCMenu2.makeMenu('top9','','How it works','','',96,'','','','','overClass')
oCMenu2.makeMenu('sub91','top9','The advice process explained','how_advice_process.htm','',220)
	oCMenu2.makeMenu('sub92','top9','Why do I need to see a planner?','how_why_see_financial_planner.htm','',220)
	oCMenu2.makeMenu('sub93','top9','Prepare yourself - what to bring','how_what_to_bring.htm','',220)
	oCMenu2.makeMenu('sub94','top9','Book an appointment','contact.asp','',220)

oCMenu2.makeMenu('top10','','','','',1,'','images/mnu_separator.jpg','','','','','','nolink')
oCMenu2.makeMenu('top11','','Contact us','','',81,'','','','','overClass')
	oCMenu2.makeMenu('sub11','top11','Contact details','contact.asp','',110)
	oCMenu2.makeMenu('sub12','top11','Office locations','contact_offices.htm','',110)
	oCMenu2.makeMenu('sub13','top11','Work for us','contact_jobs.htm','',110)

oCMenu2.makeMenu('top12','','','','',1,'','images/mnu_separator.jpg','','','','','','nolink')
oCMenu2.makeMenu('top13','','Book appointment','contact.asp','',131)

//Leave this line - it constructs the menu
oCMenu2.construct()