// write me if you have questions: web.master@male.net

// constants
var initX       = 120; // x-coordinate of top left corner of dropdown menu 
var initY       = 124;  // y-coordinate of top left corner of dropdown menu 
var backColor   = '#009999'; // 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;
var xSpacer     = '<img src="gfx/chevy-sm.gif" width=12 height=12 border=0> '
//

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
120, // the width of current menu list 
190, // 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 (
'Link 11', 'http://www.1.net','Description 11',
'Link 12', 'http://www.2.net','Description 12',
'Link 13', 'http://www.3.net','Description 13'
));


// SMILE DESIGNS MENU
menuContent [1] = new Array ( 
-1, 
-1,
210,
115, // 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 (
xSpacer+'Home', 'index.cfm', 'Smile Designs Home',
xSpacer+'Smile Gallery', 'smile-gallery.cfm', 'Smile Gallery',
xSpacer+'About Dr. Goudy', 'smile-about.cfm', 'About Dr. Goudy',

xSpacer+'Location', 'smile-location.cfm', 'Location'
));

// SERVICES MENU
menuContent [2] = new Array ( 
-1, 
-1,
290,
295, // 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 (
xSpacer+'Overview', 'services.cfm', 'Overview',
xSpacer+'Existing Patient Services', 'patients.cfm', 'Existing Patient Services',
xSpacer+'Migraine Relief', 'services-nti.cfm', 'Migraine Relief'
));

// PATIENTS MENU
menuContent [3] = new Array ( 
-1, 
-1,
260,
415, // 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 (
xSpacer+'Patient Login', 'patients.cfm', 'Patient Login',
xSpacer+'Becoming a Patient', 'patients-new.cfm', 'Becoming a Patient',
xSpacer+'New Patient Form','patients-new.cfm', 'New Patient Form',
xSpacer+'Patient\'s Bill of Rights', 'patients-rights.cfm', 'Patient\'s Bill of Rights'
));

// CONTACT MENU
menuContent [4] = new Array ( 
-1, 
-1,
260,
535, // 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 (
xSpacer+'Patient Feedback', 'feedback.cfm', 'Submit Patient Feedback',
xSpacer+'Appointments', 'contact-appointments.cfm', 'Appointments',
xSpacer+'Contact the Staff', 'contact.cfm', 'Contact the Staff at Smile Designs'
));

