// constants
var initX       = 131; // x-coordinate of top left corner of dropdown menu 
var initY       = 79; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#224378'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = 'white'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
//


menuContent     = new Array ();

// **************************************************************************
// Start top level menu

menuContent [0] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
100, // the width of current menu list 
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Background', '/background.php',
'Our Mission', '/mission.php',
'Our Leaders', '/leaders.php',
'Facts &amp; Figures', '/facts.php',
'Industry', '/industry.php',
'News/Press Releases', '/news.php',
'Employment Opportunities', '/employment.php',
'Contact Us', '/contact.php'
));

menuContent [1] = new Array ( 
-1, 
-1,
100,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Products by Category', '/category.php',
'Products by Supplier', '/supplier.php'
));

menuContent [2] = new Array ( 
-1, 
-1,
150,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Promotions', '/promotions.php',
'Events', '/events.php'
));

menuContent [3] = new Array ( 
-1, 
-1,
150,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Policy', '/policy.php',
'Programs We Support', '/programs_support.php'
));

menuContent [4] = new Array ( 
-1, 
-1,
150,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
));

// **************************************************************************
// Start second level menu

menuContent [5] = new Array ( 
1, 
0,
120,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'MALTS', '/category.php',
'Premium', '/category.php',
'Premium Light', '/category.php',
'Below Premium', '/category.php',
'Imports', '/category.php',
'Specialties', '/category.php',
'Non-Alcohol', '/category.php'
));

menuContent [6] = new Array ( 
1, 
1,
120,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Arizona', '/supplier.php',
'Barton', '/supplier.php',
'Blue City', '/supplier.php',
'Coors', '/supplier.php',
'Dribeck', '/supplier.php',
'Gallo', '/supplier.php',
'Gambrinus', '/supplier.php',
'Guinness', '/supplier.php',
'Labatt', '/supplier.php',
'Pabst', '/supplier.php',
'Sapporo', '/supplier.php'
));

