// write me if you have questions: web.master@male.net

// constants
var initX       = 175; // x-coordinate of top left corner of dropdown menu 
var initY       = 124; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FEAAF01'; // 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 ();

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
140, // 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 (
'History', 'history.php',
'Guiding Principles', 'guidingprinciples.php',
'Management', 'management.php',
'Opportunities', 'opportunities.php'
));

menuContent [1] = new Array ( 
-1, 
-1,
140,
260, // 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 (
'Technology Tools', 'technology.php',
'Administrative Services', 'admin.php'
));

menuContent [2] = new Array ( 
-1, 
-1,
140,
400, // 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 (
'Large, multi-Office Practices', 'casestudies_lmp.php',
'Rural Practice', 'casestudies_rp.php',
'Growing Practice', 'casestudies_gp.php',
'Established Practice', 'casestudies_ep.php'
));

menuContent [3] = new Array ( 
1, 
0,
140,
-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 (
'Practice Management Software', 'tt_practicem.php',
'Electronic Medical Records', 'tt_emr.php', 
'Custom Reporting', 'tt_cr.php', 
'Document Imaging', 'tt_di.php', 
'Office Productivity', 'tt_op.php', 
'Forms Generation', 'tt_fg.php'
));

menuContent [4] = new Array ( 
1, 
1,
140,
-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 (
'Billing & Collections', 'admin_bc.php',
'Productivity Analysis', 'admin_pa.php', 
'IT Support', 'admin_it.php', 
'Managed Care Contract Performance', 'admin_mccp.php'
));

menuContent [5] = new Array ( 
-1, 
-1,
140,
515, // 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 (
'Articles of Interest', 'news.php',
'Releases and Milestones', 'releases.php'
));