// write me if you have questions: web.master@male.net

// constants
var initX       = 0; // x-coordinate of top left corner of dropdown menu 
var initY       = 187; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#d9eaf2'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#000066'; // 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 ();

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
10, // the width of current menu list 
150, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
150, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
));

menuContent [1] = new Array ( 
-1, 
-1,
240,
40, // 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 (
'Frequently Asked Questions: The Basics of RSDT', 'faqs.html',
'Addressing Administrators Common Concerns', 'adminconcerns.html',
'Of Interest to Parents', 'parents.html',
'Of Interest to Students', 'students.html'
));

menuContent [2] = new Array ( 
-1, 
-1,
200,
280, // 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 (
'Checklist for Success: A Manual to Developing a RSDT Program', 'checklist.html',
'RSDT as a Component of Drug Prevention', 'drugprevention.html',
'Results of School Testing Programs', 'results.html'
));

menuContent [3] = new Array ( 
-1, 
-1,
225,
480, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordina
new Array (
'Program and Testing Innovations', 'programtesting.html',
'EtG Alcohol Testing', 'alcohol.html',
'Nicotine Testing', 'nicotine.html',
'Smarter Student Drug Testing', 'smarter.html',
'Low Positive Test Rates', 'lowpos.html',
'Drug Testing at Home', 'family.html',
'Publications & Studies', 'pubs.html',
'Online Links', 'links.html'
));

menuContent [4] = new Array ( 
-1, 
-1,
124,
706, // 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 (
'Institute for Behavior and Health, Inc.', 'ibh.html',
'Contact Us', 'contact.html',
'Site Map', 'map.html',
'Privacy Policy', 'privacy.html',
'Terms of Use', 'tou.html'
));
