
//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames=0

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=0
oCMenu.fromTop=1   
oCMenu.rows=1 
oCMenu.menuPlacement="left"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="/domino/dtf/dtf.nsf/LookupFiles/2AD56A99A64CD9CDCA256F39007E1D83/$file/spacer.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth="192"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX=0 
oCMenu.barY=100
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//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=192
oCMenu.level[0].height=25
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0
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"

//dynamic effect (controllable for each level)
oCMenu.level[0].clippx=8
oCMenu.level[0].cliptim=8
//special animation filters (IE5.5+ only, controllable for each level)
oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.01)" 

//Other special animation filters (IE5.5+ only, controllable for each level)
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Wheel(duration=0.5,spokes=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Barn(duration=0.5,orientation=horizontal)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Blinds(duration=0.5,bands=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.CheckerBoard(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.01)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.GradientWipe(duration=0.5,wipeStyle=0)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Iris(duration=0.5,irisStyle=STAR)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Iris(duration=0.5,irisStyle=CIRCLE)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Pixelate(duration=0.5,maxSquare=40)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Wheel(duration=0.5,spokes=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Spiral(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Stretch(duration=0.5,stretchStyle=push)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Strips(duration=0.5,motion=rightdown)"


//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=192
oCMenu.level[1].height=25
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=0
oCMenu.level[1].borderY=0
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=0
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"
//dynamic effect
oCMenu.level[1].clippx=8
oCMenu.level[1].cliptim=8
//special animation filters
oCMenu.level[1].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.0001)" 


//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to specify 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=192
oCMenu.level[2].height=25
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"


/******************************************
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','','About us','/domino/dtf/dtf.nsf/html-v/03_04_ann_about.html','',192,0,'','','none','none')
	oCMenu.makeMenu('sub00','top0','Our direction >','/domino/dtf/dtf.nsf/html-v/03_04_ann_direction.html','','','','','','green','greenon')
		oCMenu.makeMenu('sub001','sub00','Vision/mission/values','/domino/dtf/dtf.nsf/html-v/03_04_ann_vision.html','',192,0,'','','greenon','greenonon')
		oCMenu.makeMenu('sub002','sub00','Corporate planning','/domino/dtf/dtf.nsf/html-v/03_04_ann_corp.html','',192,0,'','','greenon','greenonon')
	oCMenu.makeMenu('sub01','top0','Our structure >','/domino/dtf/dtf.nsf/html-v/03_04_ann_structure.html','','','','','','green','greenon')
		oCMenu.makeMenu('sub004','sub01','Organisational structure','/domino/dtf/dtf.nsf/html-v/03_04_ann_organ.html','',192,0,'','','greenon','greenonon')
		oCMenu.makeMenu('sub005','sub01','Divisions','/domino/dtf/dtf.nsf/html-v/03_04_ann_divisions.html','',192,0,'','','greenon','greenonon')
		oCMenu.makeMenu('sub006','sub01','Branches & internal committees','/domino/dtf/dtf.nsf/html-v/03_04_ann_branches.html','',192,0,'','','greenon','greenonon')
		oCMenu.makeMenu('sub063','sub01','Entities & statutory authorities','/domino/dtf/dtf.nsf/html-v/03_04_ann_entities.html','',192,0,'','','greenon','greenonon')
	oCMenu.makeMenu('sub02','top0','Our staff in profile >','/domino/dtf/dtf.nsf/html-v/03_04_ann_staff.html','','','','','','green','greenon')
		oCMenu.makeMenu('sub064','sub02','Executive Committee CMG','/domino/dtf/dtf.nsf/html-v/03_04_ann_exec.html','',192,0,'','','greenon','greenonon')
		oCMenu.makeMenu('sub065','sub02','Our staff/graduates/cadets','/domino/dtf/dtf.nsf/html-v/03_04_ann_cadets.html','',192,0,'','','greenon','greenonon')
		oCMenu.makeMenu('sub066','sub02','Our HR statistics','/domino/dtf/dtf.nsf/html-v/03_04_ann_statistics.html','',192,0,'','','greenon','greenonon')
	oCMenu.makeMenu('sub03','top0','Our social side','/domino/dtf/dtf.nsf/html-v/03_04_ann_social.html','','','','','','green','greenon')

	
oCMenu.makeMenu('top1','','Our performance','/domino/dtf/dtf.nsf/html-v/03_04_ann_performance.html','',192,0,'','','none','none')
	oCMenu.makeMenu('sub09','top1','The Secretary - comments','/domino/dtf/dtf.nsf/html-v/03_04_ann_secretary.html','','','','','','blue','blueon')
	oCMenu.makeMenu('sub10','top1','Outputs summary table >','/domino/dtf/dtf.nsf/html-v/03_04_ann_outsummary.html','','','','','','blue','blueon')
		oCMenu.makeMenu('sub007','sub10','Financial & resource services','/domino/dtf/dtf.nsf/html-v/03_04_ann_out1.html','',192,0,'','','blueon','blueonon')
		oCMenu.makeMenu('sub008','sub10','Economic & fiscal policy','/domino/dtf/dtf.nsf/html-v/03_04_ann_out2.html','',192,0,'','','blueon','blueonon')
		oCMenu.makeMenu('sub009','sub10','Revenue & reg. management','/domino/dtf/dtf.nsf/html-v/03_04_ann_out3.html','',192,0,'','','blueon','blueonon')
		oCMenu.makeMenu('sub010','sub10','Community assistance','/domino/dtf/dtf.nsf/html-v/03_04_ann_out4.html','',192,0,'','','blueon','blueonon')
	oCMenu.makeMenu('sub13','top1','Stakeholder survey','/domino/dtf/dtf.nsf/html-v/03_04_ann_survey.html','','','','','','blue','blueon')
	oCMenu.makeMenu('sub11','top1','Tasmania Together >','/domino/dtf/dtf.nsf/html-v/03_04_ann_tastogether.html','','','','','','blue','blueon')
		oCMenu.makeMenu('sub011','sub11','Benchmarks','/domino/dtf/dtf.nsf/html-v/03_04_ann_benchmarks.html','',192,0,'','','blueon','blueonon')
	oCMenu.makeMenu('sub12','top1','Additional functions >','/domino/dtf/dtf.nsf/html-v/03_04_ann_add.html','','','','','','blue','blueon')
		oCMenu.makeMenu('sub012','sub12','Human resource management','/domino/dtf/dtf.nsf/html-v/03_04_ann_human.html','',192,0,'','','blueon','blueonon')
		oCMenu.makeMenu('sub013','sub12','Freedom of information','/domino/dtf/dtf.nsf/html-v/03_04_ann_freedom.html','',192,0,'','','blueon','blueonon')
		oCMenu.makeMenu('sub014','sub12','Public interest disclosure','/domino/dtf/dtf.nsf/html-v/03_04_ann_public.html','',192,0,'','','blueon','blueonon')
		oCMenu.makeMenu('sub015','sub12','Documents / speeches','/domino/dtf/dtf.nsf/html-v/03_04_ann_docs.html','',192,0,'','','blueon','blueonon')
		oCMenu.makeMenu('sub016','sub12','Legislation','/domino/dtf/dtf.nsf/html-v/03_04_ann_legislation.html','',192,0,'','','blueon','blueonon')
		oCMenu.makeMenu('sub017','sub12','Assets / Gov. procurement','/domino/dtf/dtf.nsf/html-v/03_04_ann_asset.html','',192,0,'','','blueon','blueonon')


oCMenu.makeMenu('top2','','Our finances','/domino/dtf/dtf.nsf/html-v/03_04_ann_finance.html','',192,0,'','','none','none')
	oCMenu.makeMenu('sub23','top2','Summary of our finances','/domino/dtf/dtf.nsf/html-v/03_04_ann_summary.html','','','','','','yellow','yellowon')
	oCMenu.makeMenu('sub24','top2','Complete financial statement >','/domino/dtf/dtf.nsf/html-v/03_04_ann_complete.html','','','','','','yellow','yellowon')
		oCMenu.makeMenu('sub019','sub24','Treasury & Finance','/domino/dtf/dtf.nsf/html-v/03_04_ann_treas.html','',192,0,'','','yellowon','yellowonon')
		oCMenu.makeMenu('sub020','sub24','Finance-General Div. Admin.','/domino/dtf/dtf.nsf/html-v/03_04_ann_fingen.html','',192,0,'','','yellowon','yellowonon')
		oCMenu.makeMenu('sub021','sub24','Treas. & Finance Div. Admin.','/domino/dtf/dtf.nsf/html-v/03_04_ann_treasfin.html','',192,0,'','','yellowon','yellowonon')
		oCMenu.makeMenu('sub022','sub24','Cert. of Financial Statements','/domino/dtf/dtf.nsf/html-v/03_04_ann_cert.html','',192,0,'','','yellowon','yellowonon')
		oCMenu.makeMenu('sub025','sub24','Notes to Financial Statements','/domino/dtf/dtf.nsf/html-v/03_04_ann_notes.html','',192,0,'','','yellowon','yellowonon')
	oCMenu.makeMenu('sub25','top2','Compliance >','/domino/dtf/dtf.nsf/html-v/03_04_ann_compliance.html','','','','','','yellow','yellowon')
		oCMenu.makeMenu('sub075','sub25','Index to disclosure reqs.','/domino/dtf/dtf.nsf/html-v/03_04_ann_disclosure.html','',192,0,'','','yellowon','yellowonon')
		oCMenu.makeMenu('sub076','sub25','Audit report','/domino/dtf/dtf.nsf/html-v/03_04_ann_audit.html','',192,0,'','','yellowon','yellowonon')
		oCMenu.makeMenu('sub077','sub25','Super certificate','/domino/dtf/dtf.nsf/html-v/03_04_ann_super.html','',192,0,'','','yellowon','yellowonon')
		oCMenu.makeMenu('sub078','sub25','Trans. letter to Treasurer','/domino/dtf/dtf.nsf/html-v/03_04_ann_letter.html','',192,0,'','','yellowon','yellowonon')


oCMenu.makeMenu('top3','','Fast facts','/domino/dtf/dtf.nsf/html-v/03_04_ann_fast.html','',192,0,'','','none','none')
	oCMenu.makeMenu('sub06','top3','Monitoring & forecasting','/domino/dtf/dtf.nsf/html-v/03_04_ann_monitoring.html','','','','','','red','redon')
	oCMenu.makeMenu('sub07','top3','Managing the State Budget','/domino/dtf/dtf.nsf/html-v/03_04_ann_budget.html','','','','','','red','redon')
	oCMenu.makeMenu('sub08','top3','Regulation & revenue','/domino/dtf/dtf.nsf/html-v/03_04_ann_regulation.html','','','','','','red','redon')



//Leave this line - it constructs the menu
oCMenu.construct()	

