<!---
// Use Freely as long as following disclaimer is intact ::
//---------------------------------------------------------------
// Cross Browser Multi-Orientation Menu v1.5 17th August 2004
// This script written by Rik Comery. www.ricom.co.uk
// For support, visit the "Resources" section at www.ricom.co.uk           
// All rights reserved.   
// Featured in the SimplytheBest DHTML Scripts Library at http://simplythebest.net/scripts/

//  MENU ITEMS //
// DUPLICATE THIS ENTIRE SECTION FOR MULTIPLE MENUS.  PLEASE SEE THE INSTRUCTIONS FILE FOR DETAILS ///   
var Menu1 = new Array ()
var subMenu1 = new Array ()

   Menu1[0] = new Array("Global Careers Home", "http://www.arrow.com/careers/index.html","_top", "left")
     subMenu1[0] = new Array()
	 
   Menu1[1] = new Array("Asia Pacific", "http://www.arrowasia.com.hk/","_top", "left")
     subMenu1[1] = new Array()	 

   Menu1[2] = new Array("Europe", "http://www.arrow.com/careers/europe","_top", "left")
     subMenu1[2] = new Array()

   Menu1[3] = new Array("North America", "http://www.arrow.com/careers/north_america/index.html","_top", "left")
     subMenu1[3] = new Array()
     subMenu1[3][0] = new Array ("Career Opportunities", "http://www.arrow.com/careers/north_america/NA-Notice.html","_top")
     subMenu1[3][1] = new Array ("Warehouse Opportunities", "http://www.arrow.com/careers/north_america/NA-Notice.html","_top")     
	 subMenu1[3][2] = new Array ("Benefits & Programs", "http://www.arrow.com/careers/north_america/benefits.html","_top")
     subMenu1[3][3] = new Array ("Career Paths", "http://www.arrow.com/careers/north_america/career_paths.html","_top")
     subMenu1[3][4] = new Array ("Diversity", "http://www.arrow.com/careers/north_america/diversity.html","_top")
     subMenu1[3][5] = new Array ("Internships", "http://www.arrow.com/careers/north_america/internships.html","_top")
	 subMenu1[3][6] = new Array ("Professional Development", "http://www.arrow.com/careers/north_america/professional_development.html","_top")
		  	 
   Menu1[4] = new Array("India Global IT Center", "http://www.arrow.com/careers/india/index.html","_top", "left")
     subMenu1[4] = new Array()
	 
   Menu1[5] = new Array("Current Arrow Employees", "","_top", "left")
     subMenu1[5] = new Array()
     subMenu1[5][0] = new Array ("Europe Job Opportunities", "http://www.arrow.com/careers/employees","_top")
   	 

/// FORMAT MENU  ///
menuStyle = "flat"                                  // Menu Style (flat, 3d)
cellPadding = "3"                                   // Cell Padding
cellBorder = 0                                      // Border width (for no border, enter 0)  THIS VALUE APPLIES TO ALL MENUS
verticalOffset = "0"                                // Vertical offset of Sub Menu. 
horizontalOffset = "0"                              // Horizontal offset of Sub Menu. 
subMenuDelay = 2                                    // Time sub menu stays visible for (in seconds). THIS VALUE APPLIES TO ALL MENUS
subIndicate = 0                                     // Show if a sub menu is present (use 0 for "no")  THIS VALUE APPLIES TO ALL MENUS
indicator = 0 // Symbol to show if a sub menu is present (subIndicate must be to set to 1)
                                                    // Use standard HTML <img> tag. You can use a character instead of an image. 
                                                    // e.g.      indicator = ">"
// Main Menu Items
menuWidth = "200"                  // Width of menu item.  Use 0 for default
borderColor = "#6d6d6d"            // Border Colour (flat mode only)
borderHighlight = "#cfcfcf"      // Border Highlight Colour (3d mode only)
borderShadow = "#6d6d6d"         // Border Shadow Colour (3d mode only)
menuBackground = "#083789"       // Cell Background Colour
menuHoverBackground = "#062b62"    // Cell Background Colour on mouse rollover
fontFace = "arial"               // Font Face
fontColour = "#FFFFFF"           // Font Colour
fontHoverColour = "#FFFFFF"      // Font Colour on mouse rollover
fontSize = "8pt"                 // Font Size
fontDecoration = "none"          // Style of the link text (none, underline, overline, line-through)
fontWeight = "bold"            // Font Weight (normal, bold)

// Sub Menu Items
smenuWidth = "0"                 // Width of sub menu item.  Use 0 for default
sborderColor = "#9a9a9a"           // Border Colour (flat mode only)
sborderHighlight = "#7f7f7f"     // Border Highlight Colour (3d mode only)
sborderShadow = "#83837C"        // Border Shadow Colour (3d mode only)
smenuBackground = "#4f4f4f"        // Cell Background Colour
smenuHoverBackground = "#696969" // Cell Background Colour on mouse rolloverr
sfontFace = "arial"              // Font Face
sfontColour = "#FFFFFF"          // Font Colour
sfontHoverColour = "#FFFFFF"     // Font Colour on mouse rollover
sfontSize = "8pt"                // Font Size
sfontDecoration = "none"         // Style of the link text (none, underline, overline, line-through)
sfontWeight = "bold"           // Font Weight (normal, bold)

quantity = 1
/// END FORMAT MENU  ////

/// DO NOT EDIT BELOW THIS LINE  ///
// Browser Sniffer
var isIE = (document.getElementById && document.all)?true:false;
var isNS4 = (document.layers)?true:false;
var isNS6 = (document.getElementById && !document.all)?true:false;
var timer;
var obj = (isIE)?"document.all":"document.getElementById"
// Menu Styles