
//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames=0

//Menu properties   
oCMenu.pxBetween=10
oCMenu.fromLeft=8 
oCMenu.fromTop=220   
oCMenu.rows=0 
oCMenu.menuPlacement="0"
                                                             
oCMenu.offlineRoot="file:///J/website_july2004/july2004_newwebsite/" 
oCMenu.onlineRoot="http://www.pyottboone.com/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000
oCMenu.fillImg="images/cm_fill.gif"
oCMenu.zIndex=1

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth="menu"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX="menu"
oCMenu.barY="menu"
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass="clBarBorder"


//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=130
oCMenu.level[0].height=18 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=4
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="lefttop"


//dynamic effect (controllable for each level)
//oCMenu.level[0].clippx=2
//oCMenu.level[0].cliptim=2
//special animation filters (IE5.5+ only, controllable for each level)
oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)" 

//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.5)"
//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=320
oCMenu.level[1].height=18
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=1
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"
oCMenu.level[1].arrow="images/arrow.gif"
oCMenu.level[1].arrowWidth=15
oCMenu.level[1].arrowHeight=15
//dynamic effect
//oCMenu.level[1].clippx=2
//oCMenu.level[1].cliptim=2
//special animation filters
oCMenu.level[1].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)" 


//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=300
oCMenu.level[2].height=18
oCMenu.level[2].offsetX=1
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','','Home','main.shtml')

oCMenu.makeMenu('top1','','Products','applications.shtml')

	oCMenu.makeMenu('sub11','top1','Applications','applications.shtml')
		oCMenu.makeMenu('sub111','sub11','Concrete & Ready Mix','app_concrete.shtml')
		oCMenu.makeMenu('sub112','sub11','Grain & Feed','app_grain.shtml')
		oCMenu.makeMenu('sub113','sub11','Natural Gas / CBM','app_gas.shtml')
		oCMenu.makeMenu('sub114','sub11','Sand & Gravel','app_aggregate.shtml')
		oCMenu.makeMenu('sub115','sub11','Underground and Surface Mining','app_mining.shtml')
	oCMenu.makeMenu('sub12','top1','Alignment Lasers','prod_lasers.shtml')
		oCMenu.makeMenu('sub121','sub12','Model L56 Centerline Laser','prod_lasers.shtml#l56')
		oCMenu.makeMenu('sub122','sub12','Model L100 Dual Beam Laser','prod_lasers.shtml#l100')
		oCMenu.makeMenu('sub123','sub12','Model L202 Dual Beam Laser','prod_lasers.shtml#l202')
		oCMenu.makeMenu('sub124','sub12','Model L350 Alignment Laser','prod_lasers.shtml#l350')
		oCMenu.makeMenu('sub125','sub12','Model L700 Dual Beam Laser','prod_lasers.shtml#l700')
		oCMenu.makeMenu('sub126','sub12','Laser Accessories','prod_lasers_acc.shtml')
		oCMenu.makeMenu('sub127','sub12','L700 Accessories','prod_lasers_700acc.shtml')
	oCMenu.makeMenu('sub13','top1','Atmospheric and Gas Monitoring','prod_atmospheric.shtml')
		oCMenu.makeMenu('sub131','sub13','Model 805C Remote Alarm for Smart Remotes','prod_atm_805c.shtml')
		oCMenu.makeMenu('sub132','sub13','Model 830 Gas Calibration Kit','prod_atm_830.shtml')
		oCMenu.makeMenu('sub133','sub13','Model 831 Hydrogen Discriminating Calibration Kit','prod_atm_831.shtml')
		oCMenu.makeMenu('sub134','sub13','Model 931/932 Blue Outstations','prod_atm_931.shtml')
		oCMenu.makeMenu('sub135','sub13','Model 1700 Series CO Smart Remotes','prod_atm_1700.shtml')
		oCMenu.makeMenu('sub136','sub13','Model 1715/1716 CO Monitors with Prestart Sounder/Strobe','prod_atm_1715.shtml')
		oCMenu.makeMenu('sub137','sub13','Model 1905 Universal Power Supply for Smart Remotes','prod_atm_1905.shtml')
		oCMenu.makeMenu('sub138','sub13','Model 2100 Series Smart Remote Gas Monitors','prod_atm_2100.shtml')
		oCMenu.makeMenu('sub139','sub13','Model 2123/2126 Low Level Oxygen Monitors','prod_atm_2123.shtml')
		oCMenu.makeMenu('sub1310','sub13','Model 2176/2177/2178 Anemometers','prod_atm_2177.shtml')
		oCMenu.makeMenu('sub1311','sub13','Model 2200 Series Multigas Smart Remotes','prod_atm_2200.shtml')
		oCMenu.makeMenu('sub1312','sub13','Model 2203/2204 Hydrogen Insensitive CO Monitors','prod_atm_2203.shtml')
	oCMenu.makeMenu('sub14','top1','Page Phone Communications','prod_communications.shtml')
		oCMenu.makeMenu('sub141','sub14','Model 110 GEN II with 110VAC','prod_com_110.shtml')
		oCMenu.makeMenu('sub142','sub14','Model 111 GEN II with Bullhorn Speaker','prod_com_111.shtml')
		oCMenu.makeMenu('sub143','sub14','Model 112 GEN II','prod_com_112.shtml')
		oCMenu.makeMenu('sub144','sub14','Model 112P GEN II with Pigtail & PA Approval','prod_com_112.shtml')
		oCMenu.makeMenu('sub145','sub14','Model 112RS GEN II with Bullhorn Speaker','prod_com_112rs.shtml')
		oCMenu.makeMenu('sub146','sub14','Model 112S, S/S, NPS GEN II','prod_com_112nps.shtml')
		oCMenu.makeMenu('sub147','sub14','Model 113/113P GEN II with Indicator Light','prod_com_113.shtml')
		oCMenu.makeMenu('sub148','sub14','Model 114/118 Desk Phones','prod_com_114.shtml')
		oCMenu.makeMenu('sub149','sub14','Model 116 Page Boss Amplifier','prod_com_116.shtml')
		oCMenu.makeMenu('sub1410','sub14','Model 117 Weatherproof Phone','prod_com_117.shtml')
		oCMenu.makeMenu('sub1411','sub14','Model 119 with 110VAC & Rechargeable Battery','prod_com_119.shtml')
		oCMenu.makeMenu('sub1412','sub14','Model 128 Mini Page Boss','prod_com_128.shtml')
		oCMenu.makeMenu('sub1413','sub14','Model 139 Phone Coupler','prod_com_139.shtml')
		oCMenu.makeMenu('sub1414','sub14','Model 140 Page Boss Dialer Phone','prod_com_140.shtml')
		oCMenu.makeMenu('sub1415','sub14','Model 152 Page Boss / CB Radio','prod_com_152.shtml')
		oCMenu.makeMenu('sub1416','sub14','Model 320 with Page Indicator LEDs','prod_com_320.shtml')
		oCMenu.makeMenu('sub1417','sub14','Model 321 without Page Indicator LEDs','prod_com_320.shtml')
		oCMenu.makeMenu('sub1418','sub14','Model 619/619S Page Alert','prod_com_619.shtml')
		oCMenu.makeMenu('sub1419','sub14','Model SB-12 MSHA Approved Safety Barrier','prod_com_sb12.shtml')
	oCMenu.makeMenu('sub15','top1','Conveyor / Motion Monitors','prod_conveyor.shtml')
		oCMenu.makeMenu('sub151','sub15','Model 405 A/II SpeedGuard','prod_con_405.shtml')
		oCMenu.makeMenu('sub152','sub15','Model 405IA SpeedGuard','prod_con_405ia.shtml')
		oCMenu.makeMenu('sub153','sub15','Model 450 “Digital” Motion Switch','prod_con_450.shtml')
		oCMenu.makeMenu('sub154','sub15','Model 452 4-20mA “Digital” Motion Switch','prod_con_452.shtml')
		oCMenu.makeMenu('sub155','sub15','Model 700 Series Conveyor/Belt Head System','prod_con_700.shtml')
		oCMenu.makeMenu('sub156','sub15','Model 1000 Series Belt Boss Systems','prod_con_1000.shtml')
		oCMenu.makeMenu('sub157','sub15','Model 1717/1718 Section Prestart Sounder/Strobe','prod_con_1717.shtml')
		oCMenu.makeMenu('sub158','sub15','Model 2000 SpeedGuard','prod_con_2000.shtml')
	oCMenu.makeMenu('sub16','top1','Dust Suppression','prod_dust.shtml')
		oCMenu.makeMenu('sub161','sub16','Model 234 Transfer Point Suppression System','prod_dust_234.shtml')
		oCMenu.makeMenu('sub162','sub16','Model 237 Midpoint Dust Suppression System','prod_dust_237.shtml')
		oCMenu.makeMenu('sub163','sub16','Model 460 Lil’ Wetter Digital Dust Suppression','prod_dust_460.shtml')
	oCMenu.makeMenu('sub17','top1','Fire Detection / Suppression','prod_fire.shtml')
		oCMenu.makeMenu('sub171','sub17','Model 225 Sprinkler System','prod_fire_225.shtml')
		oCMenu.makeMenu('sub172','sub17','Model 227/125 Dry Chemical Fire Suppression','prod_fire_227.shtml')
		oCMenu.makeMenu('sub173','sub17','Model 229/50 Dry Chemical Fire Suppression','prod_fire_229.shtml')		
		oCMenu.makeMenu('sub174','sub17','Model 235 “Old Faithful” Water Deluge System','prod_fire_235.shtml')
		oCMenu.makeMenu('sub175','sub17','Model 235J Lil’ Snappy Valve','prod_fire_235j.shtml')
		oCMenu.makeMenu('sub176','sub17','Model 261 Five Belt Heat Detection','prod_fire_261.shtml')
		oCMenu.makeMenu('sub177','sub17','Model 942A/943 Conveyor Fire Monitor','prod_fire_942.shtml')
		oCMenu.makeMenu('sub178','sub17','Model 1800 Heat Detection Scanner','prod_fire_1800.shtml')
		oCMenu.makeMenu('sub179','sub17','Amerex Vehicle Fire Suppression','prod_fire_amerex.shtml')
	oCMenu.makeMenu('sub18','top1','Material Level Indicators','prod_level.shtml')
		oCMenu.makeMenu('sub181','sub18','Model 230 Tilt Switch','prod_level_230.shtml')
		oCMenu.makeMenu('sub182','sub18','M Series Continuous Level Indicator','prod_level_mseries.shtml')
		oCMenu.makeMenu('sub183','sub18','PD78 Series Point Level Detector','prod_level_pd78.shtml')
	oCMenu.makeMenu('sub19','top1','Monitoring and Control','prod_monitoring.shtml')
		oCMenu.makeMenu('sub191','sub19','MineBoss PC Monitoring & Control System','prod_mon_mcs.shtml')
		oCMenu.makeMenu('sub192','sub19','Model 236 Photo Switch','prod_mon_236.shtml')
		oCMenu.makeMenu('sub193','sub19','Model 236IA Intrinsically Safe Photo Switch','prod_mon_236ia.shtml')
		oCMenu.makeMenu('sub194','sub19','Model 915 Cable Length Monitor','prod_mon_915.shtml')
		oCMenu.makeMenu('sub195','sub19','Model 950A Remote Alarm','prod_spe_950a.shtml')
		oCMenu.makeMenu('sub196','sub19','Model 1600 Analog Scanner','prod_mon_1600.shtml')
		oCMenu.makeMenu('sub197','sub19','Model LP2000I Electronic Circuit Breaker Interface','prod_mon_lp2000i.shtml')
		oCMenu.makeMenu('sub198','sub19','Model RM-2 Remote Switch','prod_mon_rm2.shtml')
		oCMenu.makeMenu('sub199','sub19','Dust Boss Computer Enclosures','prod_mon_dustboss.shtml')
	oCMenu.makeMenu('suba','top1','Power Management / Transient Voltage Suppression','prod_power.shtml')
		oCMenu.makeMenu('suba1','suba','BBS-II Battery Backup & Power Supply','prod_pow_bbs2.shtml')
		oCMenu.makeMenu('suba3','suba','Model 290 Line Protector','prod_pow_290.shtml')
		oCMenu.makeMenu('suba4','suba','Model 292 Transient Suppressor','prod_pow_292.shtml')
		oCMenu.makeMenu('suba5','suba','Model 1751/1760 Fiber Optic Link','prod_pow_1751.shtml')
		oCMenu.makeMenu('suba6','suba','Model 5000 120VAC Protector and Noise Filter','prod_pow_5000.shtml')
		oCMenu.makeMenu('suba7','suba','Model 5003 Analog Signal Protector and Noise Filter','prod_pow_5003.shtml')
		oCMenu.makeMenu('suba8','suba','Model 5006 Page Phone Line Protector','prod_pow_5006.shtml')
		oCMenu.makeMenu('suba9','suba','318-0003-003 Lightning Arrestor','prod_pow_318arrestor.shtml')
	oCMenu.makeMenu('subb','top1','Special Applications / Alarms','prod_special.shtml')
		oCMenu.makeMenu('subb1','subb','Model 233 Air Flow Switch','prod_spe_233.shtml')
		oCMenu.makeMenu('subb2','subb','Model 248/248S Monitor Alarm','prod_spe_248.shtml')
		oCMenu.makeMenu('subb3','subb','Model 630/631 MultiGuard','prod_com_630.shtml')
		oCMenu.makeMenu('subb4','subb','Model 950A External Alarm','prod_spe_950a.shtml')
		oCMenu.makeMenu('subb5','subb','Model 990C/991C/992C “J” Box','prod_spe_990.shtml')
	oCMenu.makeMenu('subc','top1','MineCom Leaky Feeder Communications & Tracking','minecom.shtml')
		
oCMenu.makeMenu('top2','','Company Information','contact.shtml')
	oCMenu.makeMenu('sub23','top2','Employment Opportunities','employment.shtml','',160)
	oCMenu.makeMenu('sub24','top2','History','history.shtml','',160)
	oCMenu.makeMenu('sub25','top2','News & Announcements','news.shtml','',160)
	oCMenu.makeMenu('sub26','top2','Quality Policy','policy.shtml','',160)

	
oCMenu.makeMenu('top3','','Distributors / Agents','agent_locations.shtml')
	oCMenu.makeMenu('sub31','top3','Locations','agent_locations.shtml','',160)
		oCMenu.makeMenu('sub311','sub31','International','agent_locations_international.shtml','',140)
		oCMenu.makeMenu('sub312','sub31','U.S. Coal Industry','agent_locations_coal.shtml','',140)
		oCMenu.makeMenu('sub313','sub31','All Other U.S. Industries','agent_locations_other.shtml','',140)
	oCMenu.makeMenu('sub32','top3','Want to be a PBE Rep?','rep_inquiry.shtml','',160)
//	oCMenu.makeMenu('sub33','top3','Reseller Login','','',160)

oCMenu.makeMenu('top4','','Industries We Serve','industries.shtml')

oCMenu.makeMenu('top5','','Coming Events','events.shtml')

oCMenu.makeMenu('top6','','Technical Support','support.shtml')
//	oCMenu.makeMenu('sub61','top6','Knowledgebase','','',160)
	oCMenu.makeMenu('sub62','top6','Repair / Service Department','support.shtml','',160)

oCMenu.makeMenu('top7','','Contact Us','contact.shtml')

oCMenu.makeMenu('top8','','Supplier Information','supplier.shtml')

oCMenu.makeMenu('top9','','Customer Information','customer.shtml')
	
oCMenu.makeMenu('top10','','Customer Survey','survey.shtml')

oCMenu.makeMenu('top11','','PBE Catalogs','files/catalogs/index.shtml')

oCMenu.makeMenu('top12','','Contracts Division','contracts/index.shtml')

//Leave this line - it constructs the menu
oCMenu.construct()	
