// Drop Down Navigation Bar
sniffBrowsers();

menuItemBullet = new bulletPoint("bullets/one/menu_off.gif","bullets/one/menu_on.gif");
labelBullet = new bulletPoint("bullets/one/header_off.gif","bullets/one/header_on.gif");
subMenuBullet = new bulletPoint("bullets/one/sub_header_off.gif","bullets/one/sub_header_on.gif");

// MAIN MENU: Please do not edit
// Syntax:
//     addLabel(bullet type[disabled],text title,sub-menu id,width[in pixel],back-ground color,roll-over color,url path,alignment)
nav = new menuBar('nav',693, 'horizontal', '#ffffff', '#ffffff');
nav.addLabel('labelBullet', 'HOME', 1, 68, '#ffffff', '#ffffff', '/index.asp', 'left');
nav.addLabel('labelBullet', 'INTERNATIONAL', 2, 140, '#ffffff', '#ffffff', '/international/', 'left');
nav.addLabel('labelBullet', 'CUSTOMS', 3, 96, '#ffffff', '#ffffff', '/customs/', 'left');
nav.addLabel('labelBullet', 'TRANSBORDER', 4, 135, '#ffffff', '#ffffff', '/transborder/', 'left');
nav.addLabel('labelBullet', 'DISTRIBUTION', 5, 140, '#ffffff', '#ffffff', '/distribution/', 'left');
nav.addLabel('labelBullet', 'PROJECTS', 6, 115, '#ffffff', '#ffffff', '/projects/', 'left');
//nav.height = 14; // this is an optional value, please do not edit


// SUB-MENU BLOCKS
// Syntax:
//     addItem(bullet type[disabled],text title,sub-menu id,width[in pixel],back-ground color,roll-over color,url path,alignment,target)   
/*
To add another item to the sub-navigation drop down, just insert a menus[id].addItem(attributes goes here) line... see syntax above.
*/
menus[1] = new menu(100, 'vertical', '#ffffff', '#ffffff');
menus[1].height = 16;
// This is a commented example to add an item on the drop down menu. You only need to change menu name and the URL. 
// The URL can be absolute e.g. http://www.icecorp.ca/international/index.asp OR it can be relative e.g. /international/index.asp
// example follows below:
// menus[1].addItem('menuItemBullet', 'insert menu name here', null, 100, '#CCCCCC', '#339999', '/international/index.asp', 'left','_self');
menus[1].writeMenu();

//INTERNATIONAL MENU
menus[2] = new menu(170, 'vertical', '#ffffff', '#ffffff');
menus[2].height = 16;
menus[2].addItem('menuItemBullet', 'Key Contacts', null, 170, '#CCCCCC', '#339999', 'http://www.icecorp.ca/contacts.asp', 'left','_self');
menus[2].addItem('menuItemBullet', 'Easy Inco', null, 170, '#CCCCCC', '#339999', 'http://www.icecorp.ca/international/inco.asp', 'left','_self');
menus[2].addItem('menuItemBullet', 'Container Sizes', null, 170, '#CCCCCC', '#339999', 'http://www.icecorp.ca/international/container.asp', 'left','_self');
menus[2].addItem('menuItemBullet', 'Request for Quote', null, 170, '#CCCCCC', '#339999', 'http://www.icecorp.ca/international/rfq.asp', 'left','_self');
menus[2].writeMenu();

//CUSTOMS MENU
menus[3] = new menu(130, 'vertical', '#ffffff', '#ffffff');
menus[3].height = 16;
menus[3].addItem('menuItemBullet', 'Service Summary', null, 130, '#CCCCCC', '#339999', 'http://www.icecorp.ca/customs/service.asp', 'left','_self');
menus[3].addItem('menuItemBullet', 'Key Contacts', null, 130, '#CCCCCC', '#339999', 'http://www.icecorp.ca/customs/contacts.asp', 'left','_self');
menus[3].addItem('menuItemBullet', 'Links', null, 130, '#CCCCCC', '#339999', 'http://www.icecorp.ca/customs/links.asp', 'left','_self');
menus[3].addItem('menuItemBullet', 'Forms', null, 130, '#CCCCCC', '#339999', 'http://www.icecorp.ca/customs/forms.asp', 'left','_self');
menus[3].addItem('menuItemBullet', 'Newsletter', null, 130, '#CCCCCC', '#339999', 'http://www.icecorp.ca/customs/newsletters.asp', 'left','_self');
menus[3].writeMenu();

//TRANSBORDER MENU
menus[4] = new menu(170, 'vertical', '#ffffff', '#ffffff');
menus[4].height = 16;
menus[4].addItem('menuItemBullet', 'Fuel Surcharges', null, 170, '#CCCCCC', '#339999', 'http://www1.icecorp.ca/fuel/fuel.asp', 'left','_blank');
menus[4].addItem('menuItemBullet', 'Claims Procedure', null, 170, '#CCCCCC', '#339999', 'http://www.icecorp.ca/transborder/claims.asp', 'left','_self');
menus[4].addItem('menuItemBullet', 'ICECORP America', null, 170, '#CCCCCC', '#339999', 'http://www.icecorp.ca/transborder/america.asp', 'left','_self');
menus[4].writeMenu();

//DISTRIBUTION MENU
menus[5] = new menu(130, 'vertical', '#ffffff', '#ffffff');
menus[5].height = 16;

menus[5].writeMenu();

//PROJECTS MENU
menus[6] = new menu(130, 'vertical', '#ffffff', '#ffffff');
menus[6].height = 16;
menus[6].addItem('menuItemBullet', 'Project Management', null, 130, '#CCCCCC', '#339999', 'http://www.icecorp.ca/projects/management.asp', 'left','_self');
menus[6].addItem('menuItemBullet', 'Project History', null, 130, '#CCCCCC', '#339999', 'http://www.icecorp.ca/projects/history.asp', 'left','_self');
menus[6].addItem('menuItemBullet', 'Photo Gallery', null, 130, '#CCCCCC', '#339999', 'http://www.icecorp.ca/projects/gallery.asp', 'left','_self');
menus[6].writeMenu();

// SUB-MENU ALIGNMENT, DO NOT EDIT THIS
menus[1].align='left';
menus[2].align='left';
menus[3].align='left';
menus[4].align='left';
menus[5].align='left';
menus[6].align='left';