oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=0
oCMenu.fromTop=123  
oCMenu.rows=0 
oCMenu.menuPlacement="left"
                                                             
//oCMenu.offlineRoot="file:///C|/Inetpub/wwwroot/dhtmlcentral/" 
//oCMenu.onlineRoot="/coolmenus/" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=100 
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 specified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=160
oCMenu.level[0].height=22 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0
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=oCMenu.level[0].width-2
oCMenu.level[1].width=160
oCMenu.level[1].height=22
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"
oCMenu.level[1].align="top" 


oCMenu.makeMenu('top0','','Home','index.htm','')
	
oCMenu.makeMenu('top1','','Graphics + Striping','graphics_striping.htm')
	oCMenu.makeMenu('sub10','top1','Body Decals','graphics_striping.htm#decals_graphics')
	oCMenu.makeMenu('sub11','top1','Body Graphics','graphics_striping.htm#commercial_signage')
	
oCMenu.makeMenu('top2','','Electronics + Lighting','elec_lighting.htm')
	oCMenu.makeMenu('sub21','top2','Vehicle Alarms','elec_lighting.htm#vehicle_alarms')
	oCMenu.makeMenu('sub22','top2','Remote Starters','elec_lighting.htm#remote_starters')
	oCMenu.makeMenu('sub23','top2','Keyless Entry','elec_lighting.htm#keyless_entry')
	oCMenu.makeMenu('sub24','top2','Lighting','elec_lighting.htm#lighting')

oCMenu.makeMenu('top3','','Truck Boxes','truck_boxes.htm')
	oCMenu.makeMenu('sub30','top3','Bed Rails','truck_boxes.htm#bed_rails')
	oCMenu.makeMenu('sub31','top3','Bed Caps','truck_boxes.htm#bed_caps')
	oCMenu.makeMenu('sub32','top3','Tonneau Covers','truck_boxes.htm#tonneau_covers')
	oCMenu.makeMenu('sub33','top3','Truck Toppers','truck_boxes.htm#truck_toppers')
	oCMenu.makeMenu('sub34','top3','Bed Liners','truck_boxes.htm#bed_liners')

oCMenu.makeMenu('top5','','Grilles + Hoods','grilles_hoods.htm')
	oCMenu.makeMenu('sub50','top5','Bug Deflectors','grilles_hoods.htm#bug_deflectors')
	oCMenu.makeMenu('sub51','top5','Grille & Hood Guards','grilles_hoods.htm#grille_guards')

oCMenu.makeMenu('top6','','Trailer Hitches','trailer_hitches.htm')
	oCMenu.makeMenu('sub060','top6','Hitches','trailer_hitches.htm#hitches')
	oCMenu.makeMenu('sub061','top6','Running Boards','trailer_hitches.htm#running_boards')
	
oCMenu.makeMenu('top7','','Running Boards','running_boards.htm')
	
oCMenu.makeMenu('top8','','Glass + Tinting','glass.htm')
	oCMenu.makeMenu('sub080','top8','Window Tinting','glass.htm#window_tinting')
	oCMenu.makeMenu('sub081','top8','Visors and Louvres','glass.htm#visors_louvres')
	oCMenu.makeMenu('sub082','top8','Banners and Graphics','glass.htm#banners_graphics')
	
oCMenu.makeMenu('top9','','Accessories','accessories.htm')

oCMenu.makeMenu('top14','','Vehicle Cleaning','vehicle_cleaning.htm')
	oCMenu.makeMenu('sub140','top14','Renu-A-Shine','vehicle_cleaning.htm#renu_a_shine')
	oCMenu.makeMenu('sub141','top14','Inner Clean','vehicle_cleaning.htm#inner_clean')
	
oCMenu.makeMenu('top10','','Vehicle Protection','vehicle_protection.htm')
	
oCMenu.makeMenu('top11','','Monthly Special','monthly_special.htm')

oCMenu.makeMenu('top12','','Find Us','find_us.htm')

oCMenu.makeMenu('top13','','Contact Us','mailto:ziebarttrimline@sasktel.net')
		
//Leave this line
oCMenu.construct()			
