<!-- // Hide
//
// menusetup.js must be included within the HTML file calling menu.js script

// The 'primeStyle' items: 26px long, 
// leading is 26 pixels
// no pop out menu indicator ' ', 
// the popout indicator is positioned 25px from the right edge
// items have 3px padding, 
// 'itemText' is defined in CSS - text off dark blue #003366
// 'itemHover' and 'itemOn' is defined in CSS - text mouse on red #990000 with red underline #990000
// 'itemBorder' is defined in CSS - 1px  solid white border #ffffff
//

var primeStyle = new ItemStyle(26, 0, ' ', -25, 3, '', '', 'itemText', 'itemHover', '');
var primeStyleon = new ItemStyle(26, 0, ' ', -25, 3, '', '', 'itemOn', 'itemHover', '');

var noStyle = new ItemStyle(26, 0, ' ', -25, 3, '', '', 'itemAddr', 'itemAddr', '');

var secondStyle = new ItemStyle(26, 0, ' ', -25, 3, '#003366', '#E5E8E6', 'itemsecText', 'itemsecHover', '');

var thirdStyle = new ItemStyle(26, 0, ' ', -25, 3, '#333333', '#E5E8E6', 'itemthirdText', 'itemthirdHover', '');



//  TO UPDATE THIS FILE FOR YOUR LEFT NAVIGATION NEEDS.....
// The main menu section begins with the creation of a 'new PopupMenu(...)' object, which
// includes the main creation and update functions -- this example just has one object created.
// Next, we use its startMenu() function to create the individual menus used by the script.
// A PopupMenu() object must be passed its own name so it can reference itself when the menu
// is active. We also use a 'with' block to work with its properties and functions below.


var pMenu = new PopupMenu('pMenu');
with (pMenu)
{

// *** MOVE OR CENTRE THE MENU HERE ***
// MENU LOGIC......

// MAIN (root) MENU
// The 'root' menu is vertically positioned at (10 - from left margin) 
// 137 pixels from top, 177 pixels wide  
// items by default use the colors/dimensions defined by the 'primeStyle' ItemStyle defined above



startMenu('root', true,'winWidth/2 - 390', 137, 177, primeStyle);

// The text is 0 spaces then the MAIN MENU navigation name, 
// then the name of the corresponding sub menu or HTML file
// and this item pops out as the main menu's submenu 
//when moused over as we've set 'sm:' as the action type.


if  (progid == "home") {
addItem('Home', 'index.html', '',primeStyleon);
  } else {
addItem('Home', 'index.html', '');
}

if  (progid.substring(0,4) == "prod") {
addItem('Safety Products', 'mProducts', 'sm:',primeStyleon);
  } else {
addItem('Safety Products', 'mProducts', 'sm:');
}

if  (progid.substring(0,4) == "services") {
addItem('Services', 'mServices', 'sm:',primeStyleon);
  } else {
addItem('Services', 'mServices', 'sm:');
}


if  (progid.substring(0,4) == "safetysrc") {
addItem('Safety Source Northeast', 'http://www.safetysourcenortheast.com', '',primeStyleon);
  } else {
addItem('Safety Source Northeast', 'http://www.safetysourcenortheast.com', '');
}


if  (progid.substring(0,4) == "safety4home") {
addItem('Safety4Home', 'http://www.safety4home.com', '',primeStyleon);
  } else {
addItem('Safety4Home', 'http://www.safety4home.com', '');
}


if  (progid.substring(0,4)== "catalogpdf") {
addItem('Download Catalog PDF', 'catalogpdf.html', '',primeStyleon);
  } else {
addItem('Download Catalog PDF', 'catalogpdf.html', '');
}



if  (progid.substring(0,4)== "manufacturers") {
addItem('Manufacturers', 'manufacturers.html', '',primeStyleon);
  } else {
addItem('Manufacturers', 'manufacturers.html', '');
}


if  (progid.substring(0,4)== "signs") {
addItem('Safety Signs', 'http://safetysourcene.accuform.com/browse_Cat.cfm?customDistI=safetysourcene', '',primeStyleon);
  } else {
addItem('Safety Signs', 'http://safetysourcene.accuform.com/browse_Cat.cfm?customDistI=safetysourcene', '');
}


if  (progid.substring(0,4)== "customsigns") {
addItem('Custom Signs', 'http://safetysourcene.accuform.com/custMenu.cfm?customDistI=safetysourcene', '',primeStyleon);
  } else {
addItem('Custom Signs', 'http://safetysourcene.accuform.com/custMenu.cfm?customDistI=safetysourcene', '');
}


if  (progid.substring(0,4)== "contact") {
addItem('Contact Us', 'contact.html', '',primeStyleon);
  } else {
addItem('Contact Us', 'contact.html', '');
}

if  (progid == "sitemap") {
addItem('Site Map', 'sitemap.html', '',primeStyleon);
  } else {
addItem('Site Map', 'sitemap.html', '');
}


// SUBMENU
// 2nd style - addItem('Column 2 Text', 'column2link.html', '');   - links to the HTML file
// 2nd style - 200 is the left side and 150 is the width for Column 2
// Then create a subsequent startMenu ('mColumn3Text', etc.)  

// 3rd style - addItem('Column 3 Text', 'mColumn3Text', 'sm:', ''); - links to the 3rd Column submenu
// 3rd style - 160 is the left side and 150 (or 170 ear plugs) is the width for Column 3
//


// beginning of SUBMENU COLUMN 2 (second style) ---------------------
startMenu('mProducts', true, 200, 0, 150, secondStyle);
addItem('Eye Protection', 'mEP', 'sm:', '');
addItem('Head/Face Protection', 'mHD', 'sm:', '');
addItem('Hearing Protection', 'mHR', 'sm:', '');
addItem('Respiratory Protection', 'mRP', 'sm:', '');
addItem('Enviro Instruments', 'mEI', 'sm:', '');
addItem('Fall Protection', 'mFP', 'sm:', '');
addItem('Hazardous Materials', 'mHZ', 'sm:', '');
addItem('Gloves', 'mGL', 'sm:', '');
addItem('Protective Clothing', 'mPC', 'sm:', '');
addItem('First Aid', 'mFA', 'sm:', '');
addItem('Ergonomic Products', 'mER', 'sm:', '');
addItem('Traffic Safety', 'mTR', 'sm:', '');
addItem('Work Area Safety', 'mWA', 'sm:', '');
addItem('Janitorial Supplies', 'mJS', 'sm:', '');


startMenu('mServices', true, 200, 0, 150, secondStyle);
addItem('Rx Eyewear', 'rxeyewear.html', '');
addItem('First Aid Van Service', 'firstaidvan.html', '');
addItem('Instrument Repair', 'repairs.html', '');
addItem('Gas Monitor Rentals', 'rentals.html', '');



// beginning of SUBMENU COLUMN 3 (third style) ---------------------
startMenu('mEP', true, 160, 0, 150, thirdStyle);
addItem('Plano Safety Glasses', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=3&tree=2*EYE+PROTECTION*0@@3*PLANO+SAFETY+GLASSES*0@@', '');
addItem('Visitor Glasses', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=101500&Parent=31&tree=2*EYE+PROTECTION*0@@31*VISITOR+GLASSES*101500@@', '');
addItem('Reading Glasses', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=101750&Parent=32&tree=2*EYE+PROTECTION*0@@32*READING+GLASSES*101750@@', '');
addItem('Goggles', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=101000&Parent=30&tree=2*EYE+PROTECTION*0@@30*GOGGLES*101000@@', '');
addItem('Universal Sideshields', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=102200&Parent=34&tree=2*EYE+PROTECTION*0@@34*UNIVERSAL+SIDESHIELDS*102200@@', '');
addItem('Accessories', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=36&tree=2*EYE+PROTECTION*0@@36*ACCESSORIES*0@@', '');


startMenu('mHD', true, 160, 0, 150, thirdStyle);
addItem('Hard Hats', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=283&tree=282*HEAD+AND+FACE+PROTECTION*0@@283*HARD+HATS*0@@', '');
addItem('Faceshields', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=295&tree=282*HEAD+AND+FACE+PROTECTION*0@@295*FACESHIELDS*0@@', '');
addItem('Welding Helmets', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=113100&Parent=302&tree=282*HEAD+AND+FACE+PROTECTION*0@@302*WELDING+HELMETS*113100@@', '');
addItem('Winter Liners', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=113000&Parent=301&tree=282*HEAD+AND+FACE+PROTECTION*0@@301*WINTER+LINERS*113000@@', '');
addItem('Head/Face Accessories', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=114000&Parent=303&tree=282*HEAD+AND+FACE+PROTECTION*0@@303*HEAD-FACE+PROTECTION+ACCESSORIES*114000@@', '');


startMenu('mHR', true, 160, 0, 170, thirdStyle);
addItem('Ear Plugs - Disposable', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=305&tree=304*HEARING+PROTECTION*0@@305*EARPLUGS-DISPOSABLE*0@@', '');
addItem('Ear Plugs - Reusable', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=121500&Parent=311&tree=304*HEARING+PROTECTION*0@@311*EARPLUGS-REUSABLE*121500@@', '');
addItem('Ear Muffs', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=122000&Parent=313&tree=304*HEARING+PROTECTION*0@@313*EAR+MUFFS*122000@@', '');
addItem('Ear Muffs - Cap Mounted', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=123000&Parent=316&tree=304*HEARING+PROTECTION*0@@316*CAP+MOUNTED+EARMUFFS*123000@@', '');
addItem('Ear Muffs - Radio Equipped', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=122700&Parent=314&tree=304*HEARING+PROTECTION*0@@314*RADIO+EQUIPPED+EAR+MUFFS*122700@@', '');
addItem('Semi-Aural Headbands', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=122500&Parent=312&tree=304*HEARING+PROTECTION*0@@312*SEMI-AURAL+HEADBANDS*122500@@', '');
addItem('Communication Products', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=122750&Parent=315&tree=304*HEARING+PROTECTION*0@@315*COMMUNICATION+PRODUCTS*122750@@', '');


startMenu('mRP', true, 160, 0, 220, thirdStyle);
addItem('Disposable Respirators', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=351&tree=317*RESPIRATORY+PROTECTION*0@@351*DISPOSABLE+RESPIRATORS*0@@', '');
addItem('Full Face Respirators', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=337&tree=317*RESPIRATORY+PROTECTION*0@@337*FULL+FACE+RESPIRATORS*0@@', '');
addItem('Half Mask Respirators', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=331&tree=317*RESPIRATORY+PROTECTION*0@@331*HALF+MASK+RESPIRATORS*0@@', '');
addItem('MSA Filters-Cartridges-Parts', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=344&tree=317*RESPIRATORY+PROTECTION*0@@344*MSA+FILTERS-CARTRIDGES-PARTS*0@@', '');
addItem('North Filters-Cartridges-Parts', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=130530&Parent=348&tree=317*RESPIRATORY+PROTECTION*0@@348*NORTH+FILTERS-CARTRIDGES-PARTS*130530@@', '');
addItem('3M Filters-Cartridges-Parts', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=130510&Parent=343&tree=317*RESPIRATORY+PROTECTION*0@@343*3M+FILTERS-CARTRIDGES-PARTS*130510@@', '');
addItem('Aearo Filters-Cartridges-Parts', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=130535&Parent=347&tree=317*RESPIRATORY+PROTECTION*0@@347*AEARO+FILTERS-CARTRIDGES-PARTS*130535@@', '');
addItem('Draeger Filters-Cartridges-Parts', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=130560&Parent=350&tree=317*RESPIRATORY+PROTECTION*0@@350*DRAEGER+FILTERS-CARTRIDGES-PARTS*130560@@', '');
addItem('Survivair Filters-Cartridges-Parts', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=130540&Parent=349&tree=317*RESPIRATORY+PROTECTION*0@@349*SURVIVAIR+FILTERS-CARTRIDGES-PARTS*130540@@', '');
addItem('Powered Air Respirators (PAPR)', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=318&tree=317*RESPIRATORY+PROTECTION*0@@318*POWERED+AIR+RESPIRATORS+(PAPR)*0@@', '');
addItem('Self Contained Breathing Apparatus', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=136000&Parent=323&tree=317*RESPIRATORY+PROTECTION*0@@323*SELF+CONTAINED+BREATHING+APPARATUS*136000@@', '');
addItem('Supplied Air Respirators', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=134000&Parent=321&tree=317*RESPIRATORY+PROTECTION*0@@321*SUPPLIED+AIR+RESPIRATORS*134000@@', '');
addItem('Ambient Air Pumps-Masks-Hoses', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=135000&Parent=322&tree=317*RESPIRATORY+PROTECTION*0@@322*AMBIENT+AIR+PUMPS-MASKS-HOSES*135000@@', '');
addItem('Filtration Panels', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=137000&Parent=324&tree=317*RESPIRATORY+PROTECTION*0@@324*FILTRATION+PANELS*137000@@', '');
addItem('Fit Test &amp; Cleaning Supplies', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=325&tree=317*RESPIRATORY+PROTECTION*0@@325*FIT+TEST+AND+CLEANING+SUPPLIES*0@@', '');
addItem('Confined Space Accessories', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=139000&Parent=330&tree=317*RESPIRATORY+PROTECTION*0@@330*CONFINED+SPACE+ACCESSORIES*139000@@', '');


startMenu('mEI', true, 160, 0, 170, thirdStyle);
addItem('Multi-Gas Monitors', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=150000&Parent=72&tree=71*ENVIRONMENTAL+INSTRUMENTS*0@@72*MULTI-GAS+MONITORS*150000@@', '');
addItem('Detector Tubes &amp; Pumps', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=155000&Parent=74&tree=71*ENVIRONMENTAL+INSTRUMENTS*0@@74*DETECTOR+TUBES+AND+PUMPS*155000@@', '');
addItem('Test Gas and Service Parts', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=157000&Parent=76&tree=71*ENVIRONMENTAL+INSTRUMENTS*0@@76*TEST+GAS+AND+SERVICE+PARTS*157000@@', '');
addItem('Sound Level Meters', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=156000&Parent=75&tree=71*ENVIRONMENTAL+INSTRUMENTS*0@@75*SOUND+LEVEL+METERS*156000@@', '');


startMenu('mFP', true, 160, 0, 220, thirdStyle);
addItem('Harnesses', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=43&tree=42*FALL+PROTECTION*0@@43*HARNESSES*0@@', '');
addItem('Lanyards', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=56&tree=42*FALL+PROTECTION*0@@56*LANYARDS*0@@', '');
addItem('Rope Grabs &amp; Vertical Lifelines', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=143000&Parent=65&tree=42*FALL+PROTECTION*0@@65*ROPE+GRABS+AND+VERTICAL+LIFELINES*143000@@', '');
addItem('Rebar Chain Assemblies', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=140500&Parent=62&tree=42*FALL+PROTECTION*0@@62*REBAR+CHAIN+ASSEMBLIES*140500@@', '');
addItem('Retractable Lifelines', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=141000&Parent=63&tree=42*FALL+PROTECTION*0@@63*RETRACTABLE+LIFELINES*141000@@', '');
addItem('Kwik-Stand Portable Barriers', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=144525&Parent=68&tree=42*FALL+PROTECTION*0@@68*KWIK-STAND+PORTABLE+BARRIERS*144525@@', '');
addItem('Anchorage Point Devices', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=144000&Parent=66&tree=42*FALL+PROTECTION*0@@66*ANCHORAGE+POINT+DEVICES*144000@@', '');
addItem('Bluewater Guard Rail Kits', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=144500&Parent=67&tree=42*FALL+PROTECTION*0@@67*BLUEWATER+GUARD+RAIL+KITS*144500@@', '');
addItem('Complete Retrieval-Entry Systems', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=142000&Parent=64&tree=42*FALL+PROTECTION*0@@64*COMPLETE+RETRIEVAL-ENTRY+SYSTEMS*142000@@', '');
addItem('Anchorage Point Devices', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=144000&Parent=66&tree=42*FALL+PROTECTION*0@@66*ANCHORAGE+POINT+DEVICES*144000@@', '');


startMenu('mHZ', true, 160, 0, 220, thirdStyle);
addItem('Safety Storage Cabinets', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=162000&Parent=82&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@82*SAFETY+STORAGE+CABINETS*162000@@', '');
addItem('Drum Storage Cabinets', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=162100&Parent=83&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@83*DRUM+STORAGE+CABINETS*162100@@', '');
addItem('Spill Platform Systems', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=163000&Parent=84&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@84*SPILL+PLATFORM+SYSTEMS*163000@@', '');
addItem('Type I &amp; Type II Safety Cans', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=160000&Parent=78&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@78*TYPE+I+AND+TYPE+II+SAFETY+CANS*160000@@', '');
addItem('Waste Cans', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=161000&Parent=80&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@80*WASTE+CANS*161000@@', '');
addItem('Laboratory Safety Cans', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=160100&Parent=79&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@79*LABORATORY+SAFETY+CANS*160100@@', '');
addItem('Oil &amp; Universal Sorbents', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=85&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@85*OIL+AND+UNIVERSAL+SORBENTS*0@@', '');
addItem('Emergency Spill Kits', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=91&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@91*EMERGENCY+SPILL+KITS*0@@', '');
addItem('Drain Protectors', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=165010&Parent=94&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@94*DRAIN+PROTECTORS*165010@@', '');
addItem('Cigarette Disposal REceptacle', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=161100&Parent=81&tree=77*HAZARDOUS+MATERIALS+CONTROL*0@@81*CIGARETTE+DISPOSAL+RECEPTACLE*161100@@', '');


startMenu('mGL', true, 160, 0, 220, thirdStyle);
addItem('Coated Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=126&tree=95*GLOVES*0@@126*COATED*0@@', '');
addItem('Disposable Examination Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=111&tree=95*GLOVES*0@@111*DISPOSABLE+EXAMINATION*0@@', '');
addItem('Nylon Inspectors', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=173005&Parent=145&tree=95*GLOVES*0@@145*NYLON+INSPECTORS*173005@@', '');
addItem('Liquid Handling', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=122&tree=95*GLOVES*0@@122*LIQUID+HANDLING*0@@', '');
addItem('Cotton Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=173000&Parent=104&tree=95*GLOVES*0@@104*COTTON*173000@@', '');
addItem('Cut Resistant Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=178000&Parent=140&tree=95*GLOVES*0@@140*CUT+RESISTANT*178000@@', '');
addItem('Mechanix Wear', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=106&tree=95*GLOVES*0@@106*MECHANIX+WEAR*0@@', '');
addItem('Leather Work Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=96&tree=95*GLOVES*0@@96*LEATHER+WORK+GLOVES*0@@', '');
addItem('Drivers Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=171000&Parent=101&tree=95*GLOVES*0@@101*DRIVERS*171000@@', '');
addItem('Welders Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=172000&Parent=102&tree=95*GLOVES*0@@102*WELDERS*172000@@', '');
addItem('Heat Protection', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=179000&Parent=141&tree=95*GLOVES*0@@141*HEAT+PROTECTION*179000@@', '');
addItem('Kevlar Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=174000&Parent=110&tree=95*GLOVES*0@@110*KEVLAR*174000@@', '');
addItem('Glove Liners', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=173010&Parent=105&tree=95*GLOVES*0@@105*GLOVE+LINERS*173010@@', '');



startMenu('mPC', true, 160, 0, 220, thirdStyle);
addItem('Tyvek Clothing &amp; Accessories', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=184000&Parent=164&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@164*TYVEK+CLOTHING+AND+ACCESSORIES*184000@@', '');
addItem('Blue Tyvek Coveralls', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=184010&Parent=195&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@195*BLUE+TYVEK+COVERALLS*184010@@', '');
addItem('Aprons', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=183000&Parent=162&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@162*APRONS*183000@@', '');
addItem('Polycoated Tyvek &amp; Accessories', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=184001&Parent=165&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@165*POLYCOATED+TYVEK+AND+ACCESSORIES*184001@@', '');
addItem('Saranex Clothing &amp; Accessories', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=184002&Parent=166&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@166*SARANEX+CLOTHING+AND+ACCESSORIES*184002@@', '');
addItem('Safeguard Disposable Clothing', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=185000&Parent=167&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@167*SAFEGUARD+DISPOSABLE+CLOTHING*185000@@', '');
addItem('Rainwear', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=168&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@168*RAINWEAR*0@@', '');
addItem('Aluminized Fabric Apparel', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=181000&Parent=152&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@152*ALUMINIZED+FABRIC+APPAREL*181000@@', '');
addItem('Flame Resistant Apparel', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=147&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@147*FLAME+RESISTANT+APPAREL*0@@', '');
addItem('Arc Flash Protection', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=153&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@153*ARC+FLASH+PROTECTION*0@@', '');
addItem('Hairnets-Fingercots-Shoe Covers', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=183005&Parent=163&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@163*HAIRNETS-FINGERCOTS-SHOE+COVERS*183005@@', '');
addItem('Industrial Boots', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=178&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@178*INDUSTRIAL+BOOTS*0@@', '');
addItem('Slip Resistant Footwear', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=190&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@190*SLIP+RESISTANT+FOOTWEAR*0@@', '');
addItem('Toe Caps', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=187500&Parent=189&tree=146*PROTECTIVE+CLOTHING+AND+FOOTWEAR*0@@189*TOE+CAPS*187500@@', '');



startMenu('mFA', true, 160, 0, 200, thirdStyle);
addItem('First Aid Van Service', 'firstaidvan.html', '');
addItem('First Aid Cabinets', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=190000&Parent=197&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@197*FIRST+AID+CABINETS*190000@@', '');
addItem('Refills for Cabinets', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=198&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@198*REFILLS+FOR+CABINETS*0@@', '');
addItem('Construction First Aid Kits', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=211&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@211*CONSTRUCTION+FIRST+AID+KITS*0@@', '');
addItem('Emergency Medical Kits', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=194000&Parent=214&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@214*EMERGENCY+MEDICAL+KITS*194000@@', '');
addItem('Unit First Aid Kits', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=191500&Parent=209&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@209*UNIT+FIRST+AID+KITS*191500@@', '');
addItem('Unit First Aid Kit Refills', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=192000&Parent=210&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@210*UNIT+FIRST+AID+KIT+REFILLS*192000@@', '');
addItem('Emergency Eye Wash', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=196000&Parent=215&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@215*EMERGENCY+EYE+WASH*196000@@', '');
addItem('Plumbed Eyewash-Shower Units', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=197000&Parent=216&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@216*PLUMBED+EYEWASH-SHOWER+UNITS*197000@@', '');
addItem('Alcohol-Drug Screening', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=233&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@233*ALCOHOL-DRUG+SCREENING*0@@', '');
addItem('Insect &amp; Animal Repellents', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=199000&Parent=228&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@228*INSECT+AND+ANIMAL+REPELLENTS*199000@@', '');
addItem('Skin Care Products', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=229&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@229*SKIN+CARE+PRODUCTS*0@@', '');
addItem('Summer Heat Stress Products', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=217&tree=196*FIRST+AID+-+PERSONAL+CARE+PRODUCTS*0@@217*SUMMER+HEAT+STRESS+PRODUCTS*0@@', '');


startMenu('mER', true, 160, 0, 180, thirdStyle);
addItem('Back Supports', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=200000&Parent=239&tree=238*ERGONOMIC+PRODUCTS*0@@239*BACK+SUPPORTS*200000@@', '');
addItem('Vibration Absorbing Gloves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=201000&Parent=240&tree=238*ERGONOMIC+PRODUCTS*0@@240*VIBRATION+ABSORBING+GLOVES*201000@@', '');
addItem('Elbow Supports', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=202005&Parent=245&tree=238*ERGONOMIC+PRODUCTS*0@@245*ELBOW+SUPPORTS*202005@@', '');
addItem('Wrist Supports', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=241&tree=238*ERGONOMIC+PRODUCTS*0@@241*WRIST+SUPPORTS*0@@', '');
addItem('Knee Pads', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=203000&Parent=246&tree=238*ERGONOMIC+PRODUCTS*0@@246*KNEE+PADS*203000@@', '');



startMenu('mTR', true, 160, 0, 180, thirdStyle);
addItem('High Visibility Vests', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=0&Parent=249&tree=247*TRAFFIC+SAFETY*0@@249*HIGH+VISIBILITY+VESTS*0@@', '');
addItem('Traffic Cones', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=211000&Parent=248&tree=247*TRAFFIC+SAFETY*0@@248*TRAFFIC+CONES*211000@@', '');
addItem('Safety Flags', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=214500&Parent=256&tree=247*TRAFFIC+SAFETY*0@@256*SAFETY+FLAGS*214500@@', '');
addItem('Vehicle Safety Devices', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=214000&Parent=255&tree=247*TRAFFIC+SAFETY*0@@255*VEHICLE+SAFETY+DEVICES*214000@@', '');


startMenu('mWA', true, 160, 0, 220, thirdStyle);
addItem('Ventilation Blowers &amp; Accessories', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=220500&Parent=259&tree=257*WORK+AREA+SAFETY*0@@259*VENTILATION+BLOWERS+AND+ACCESSORIES*220500@@', '');
addItem('Barricade Tapes', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=224000&Parent=263&tree=257*WORK+AREA+SAFETY*0@@263*BARRICADE+TAPES*224000@@', '');
addItem('Confined Space Accessories', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=139000&Parent=270&tree=257*WORK+AREA+SAFETY*0@@270*CONFINED+SPACE+ACCESSORIES*139000@@', '');
addItem('Electrical Devices', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=225500&Parent=265&tree=257*WORK+AREA+SAFETY*0@@265*ELECTRICAL+DEVICES*225500@@', '');
addItem('Mirrors &amp; Domes', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=229000&Parent=269&tree=257*WORK+AREA+SAFETY*0@@269*WALL+MOUNTING+MIRRORS-DOMES*229000@@', '');
addItem('Emergency Signal Horns', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=228000&Parent=268&tree=257*WORK+AREA+SAFETY*0@@268*EMERGENCY+SIGNAL+HORNS*228000@@', '');
addItem('General Industrial Products', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=227000&Parent=267&tree=257*WORK+AREA+SAFETY*0@@267*GENERAL+INDUSTRIAL+PRODUCTS*227000@@', '');
addItem('Flashlights &amp; Batteries', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=220000&Parent=258&tree=257*WORK+AREA+SAFETY*0@@258*FLASHLIGHTS+AND+BATTERIES*220000@@', '');
addItem('Fire Extinguishers', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=223000&Parent=260&tree=257*WORK+AREA+SAFETY*0@@260*FIRE+EXTINGUISHERS*223000@@', '');
addItem('Insulating Rubber Blanket-Sleeves', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=225505&Parent=266&tree=257*WORK+AREA+SAFETY*0@@266*INSULATING+RUBBER+GLOVES+SLEEVES*225505@@', '');
addItem('Lockout-Tagout Products', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=225000&Parent=264&tree=257*WORK+AREA+SAFETY*0@@264*LOCKOUT+-+TAGOUT+PRODUCTS*225000@@', '');
addItem('Rebar Caps', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=223500&Parent=261&tree=257*WORK+AREA+SAFETY*0@@261*REBAR+CAPS*223500@@', '');



startMenu('mJS', true, 160, 0, 200, thirdStyle);
addItem('Mopping &amp; Cleaning Equipment', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=300500&Parent=276&tree=271*JANITORIAL+SUPPLIES*0@@276*MOPPING+AND+CLEANING+EQUIPMENT*300500@@', '');
addItem('Cleaning Products', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=300200&Parent=273&tree=271*JANITORIAL+SUPPLIES*0@@273*CLEANING+PRODUCTS*300200@@', '');
addItem('Chemicals', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=300700&Parent=278&tree=271*JANITORIAL+SUPPLIES*0@@278*CHEMICALS*300700@@', '');
addItem('Odor Control', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=300300&Parent=274&tree=271*JANITORIAL+SUPPLIES*0@@274*ODOR+CONTROL*300300@@', '');
addItem('Paper Products &amp; Dispensers', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=300600&Parent=277&tree=271*JANITORIAL+SUPPLIES*0@@277*PAPER+PRODUCTS+AND+DISPENSERS*300600@@', '');
addItem('Can Liners', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=300100&Parent=272&tree=271*JANITORIAL+SUPPLIES*0@@272*CAN+LINERS*300100@@', '');
addItem('Personal Care', 'http://www.safetysourcenortheast.com/Default.aspx?page=category%20search%20results&CatList=300400&Parent=275&tree=271*JANITORIAL+SUPPLIES*0@@275*PERSONAL+CARE*300400@@', '');




// end of SUBmenu---------------------

}
// End Hide -->