//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=10
oCMenu.fromTop=86  
oCMenu.rows=0
oCMenu.menuPlacement=1
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=1 
oCMenu.wait=100
oCMenu.fillImg="images/spacer.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=250 // override this 
oCMenu.level[0].height=19 
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=-25
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=20
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
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"
oCMenu.level[1].arrow="images/menu_arrow.gif"
oCMenu.level[1].arrowWidth=4
oCMenu.level[1].arrowHeight=11

/******************************************
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('franchise','','','franchise.html','',162,17,'images/int_menufranchise.gif')
	oCMenu.makeMenu('explanation','franchise','Explaining Franchise Business','franchise/explanation.html')
	oCMenu.makeMenu('part1','franchise','Part 1 - Equipment','franchise/part1.html')
  	oCMenu.makeMenu('part2','franchise','Part 2 - Marketing','franchise/part2.html')
	oCMenu.makeMenu('part3','franchise','Part 3 - Chemistry','franchise/part3.html')
	oCMenu.makeMenu('timetable','franchise','Timetable','franchise/timetable.html')
	oCMenu.makeMenu('catalyst','franchise','Learn About Catalyst','franchise/catalyst.html')
	oCMenu.makeMenu('build','franchise','Build Your Own Franchise','franchise/build.html')
	oCMenu.makeMenu('request','franchise','Request Information','franchise/request.html')
	oCMenu.makeMenu('nextstep','franchise','Take the Next Step','franchise/protected/nextstep.html')
	oCMenu.makeMenu('faq','franchise','Frequently Asked Questions','franchise/faq.html')
	oCMenu.makeMenu('glossary','franchise','Glossary of Franchise Terms','franchise/glossary.html')
// New franchise model is in process -- disabling info we need to uncomment this later when new franchise model is back up..
*/			
oCMenu.makeMenu('applications','','','applications.php','',162,17,'images/int_techapplications.gif')
	oCMenu.makeMenu('extraction','applications','Extraction Cleaning Process','process.html')
	oCMenu.makeMenu('cleanseal','applications','Cleaning and Sealing','applications/cleanseal.html')
	oCMenu.makeMenu('colorstain','applications','Color and Staining','applications/colorstain.html')
	oCMenu.makeMenu('specialty','applications','Specialty Cleaning Services','applications/specialty.html')
oCMenu.makeMenu('serviceContractor','','','serviceContractor.php','',162,17,'images/int_menucontractors.gif')
oCMenu.makeMenu('case','','','casestudy.php','',162,17,'images/int_menucasestudies.gif')
oCMenu.makeMenu('distributors','','','distributor.html','',162,17,'images/int_menudistributors.gif')
oCMenu.makeMenu('equipment','','','equipment.html','',162,17,'images/int_menuequipment.gif')
	oCMenu.makeMenu('operation','equipment','Eqiupment Operation','equipment/operation.html')
	oCMenu.makeMenu('truckUnit','equipment','Truck Mounted Unit','equipment/truckUnit.html')
	oCMenu.makeMenu('trailerUnit','equipment','Trailer Mounted Unit','equipment/trailerUnit.html')   	
oCMenu.makeMenu('corporate','','','corporate.html','',162,17,'images/int_menucorporate.gif')
	oCMenu.makeMenu('about','corporate','About ConcreteScience','corporate/about.html')
	oCMenu.makeMenu('network','corporate','International Network of Contractors','corporate/network.html')
	oCMenu.makeMenu('partnerships','corporate','Business Partnerships','corporate/partnerships.html')
	oCMenu.makeMenu('history','corporate','History','corporate/history.html')
	oCMenu.makeMenu('hicks','corporate','Hicks Concrete','corporate/hicks.html')
	oCMenu.makeMenu('news','corporate','News and Events','corporate/news.php')
	oCMenu.makeMenu('contact','corporate','Contact Information','corporate/contact.html')
	oCMenu.makeMenu('career','corporate','Jobs & Careers','corporate/jobs.html')



//Leave this line - it constructs the menu
oCMenu.construct()
