// MOUSEOVER DROPDOWN MENU
// Kent Software Development
// www.kentdev.com
// (559) 280-8452
// Place this script between the <HEAD> and </HEAD> tags:
// <script language="JavaScript" src="menucontent.js"></script>

// CONSTANTS
var initX        = 200; // x-coordinate of top left corner of parent menu 
var initY        = 50; // y-coordinate of top left corner of parent menu 
var backColor    = '#FFFFC0'; // the background color of dropdown menu, set empty '' for transparent
var borderColor  = 'black'; // 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 ();

// TREE FRUIT MENU ITEMS
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
130, // the width of current menu list 
155, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
138, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
'Tree Fruit Summary', 'tree_fruit.html',
'Apricots', 'apricots.html',
'Nectarines', 'nectarines.html',
'Peaches', 'peaches.html',
'Plums', 'plums.html',
'Pluots<font size=1>&reg;</font>', 'pluots.html',
'Tree Fruit Stickering', 'tree_fruit_stickering.html'
));

// CITRUS MENU ITEMS
menuContent [1] = 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
130, // the width of current menu list 
475, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
138, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
'Citrus', 'citrus.html',
'Sizing &amp; Availability', 'citrus_availability.html',
'Citrus Specialties', 'citrus_specialties.html',
'Royal Navel Program', 'royal_navel_program.html',
'Export Citrus', 'export_citrus.html',
'Citrus Stickering', 'citrus_stickering.html'
));

menuContent [2] = 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
130, // the width of current menu list 
240, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
138, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

// GRAPE MENU ITEMS
new Array (
'Grapes', 'grapes.html',
'Sizing &amp; Availability', 'grape_availability.html'
));

menuContent [3] = 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
130, // the width of current menu list 
312, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
138, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

// FALL SPECIALTY MENU ITEMS
new Array (
'Fall Specialty Items', 'fall_items.html',
'Sizing &amp; Availability', 'fall_item_availability.html'
));

menuContent [4] = 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
130, // the width of current menu list 
397, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
138, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

// KIWIFRUIT MENU ITEMS
new Array (
'Kiwifruit', 'kiwifruit.html',
'Sizing &amp; Availability', 'kiwifruit_availability.html'
));
