oCMenu=new makeCM("oCMenu") 

oCMenu.frames = 0

//Menu properties   
oCMenu.pxBetween=1
oCMenu.fromLeft=77
oCMenu.fromTop=140
oCMenu.rows=1 
oCMenu.menuPlacement="left"
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg=""
oCMenu.zIndex=0

//Level properties - ALL properties have to be specified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=110
oCMenu.level[0].height=30
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=0
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="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
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=170
oCMenu.level[1].height=25
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
oCMenu.makeMenu('top0','','CORPORATE<br>INFORMATION')
	oCMenu.makeMenu('sub00','top0','CORPORATE PROFILE','../../corporate/profile.html')
	oCMenu.makeMenu('sub01','top0','PURPOSE & MISSION','../../corporate/purpose.html')
	oCMenu.makeMenu('sub02','top0','GROUP STRUCTURE','../../corporate/groupstructure.html')
	oCMenu.makeMenu('sub03','top0','MANAGEMENT STRUCTURE','../../corporate/management.html')
	oCMenu.makeMenu('sub04','top0','BOARD OF DIRECTORS','../../corporate/board.html')
	oCMenu.makeMenu('sub05','top0','MILESTONES','../../corporate/milestones.html')	
	oCMenu.makeMenu('sub06','top0','LOCATIONS','../../operations/locations.html')	
		
oCMenu.makeMenu('top1','','OPERATIONS')
	oCMenu.makeMenu('sub10','top1','ITALTILE','../../operations/italtile.html')
	oCMenu.makeMenu('sub11','top1','CTM','../../operations/ctm.html')
	oCMenu.makeMenu('sub12','top1','LOCATIONS','../../operations/locations.html')
	
oCMenu.makeMenu('top2','','INVESTOR<br>INFORMATION')
	oCMenu.makeMenu('sub20','top2','FACT SHEET','../../investor/factsheet.html')
	oCMenu.makeMenu('sub21','top2','FINANCIAL HIGHLIGHTS','../../investor/fin_high.html')
	oCMenu.makeMenu('sub22','top2','SEVEN YEAR REVIEW','../../investor/sevenyear.html')
	oCMenu.makeMenu('sub23','top2','FINANCIAL RESULTS','../../investor/fin_results.html')
	oCMenu.makeMenu('sub24','top2','SENS ANNOUNCEMENTS','../../investor/sens.asp')
	oCMenu.makeMenu('sub25','top2','DIVIDEND PAGE','../../investor/dividendpage.html')
	oCMenu.makeMenu('sub26','top2','ADVISORS','../../investor/advisors.html')
	oCMenu.makeMenu('sub27','top2','SHARE PRICE','../../investor/shareprice.html')
	oCMenu.makeMenu('sub28','top2','ANNUAL REPORT','../../investor/annualreport.html')
	oCMenu.makeMenu('sub29','top2','PROXY FORM','../../investor/proxyform.html')
	oCMenu.makeMenu('sub291','top2','SHAREHOLDERS\' DIARY','../../investor/diary.html')
	oCMenu.makeMenu('sub292','top2','ENQUIRIES','../../enquiries.html')
	oCMenu.makeMenu('sub293','top2','STRATE','../../investor/strate.html')
	oCMenu.makeMenu('sub294','top2','PAIA','../../investor/paia.html')						
	
oCMenu.makeMenu('top3','','PEOPLE &<br>RECRUITMENT','../../peoplerecruitment/peoplerecruitment.html')

oCMenu.makeMenu('top4','','FRANCHISE<br>INFORMATION')
	oCMenu.makeMenu('sub40','top4','FRANCHISE PROFILE - CTM','../../franchise/brandprofile_ctm.html','','','180')
	oCMenu.makeMenu('sub41','top4','FRANCHISE PROFILE - ITALTILE','../../franchise/brandprofile_italtile.html','','','180')
	oCMenu.makeMenu('sub42','top4','FRANCHISE OPPORTUNITIES','../../franchise/franchiseopp.html','','','180')

oCMenu.makeMenu('top5','','PRESS<br>RELEASES','','','113')
	oCMenu.makeMenu('sub50','top5','LATEST RELEASES','../../pr/pr.html')
	oCMenu.makeMenu('sub51','top5','ARCHIVES','../../pr/pr_archives.html')

oCMenu.construct()