
// constants
var initX       = 4; // x-coordinate of top left corner of dropdown menu
var initY       = 265; // y-coordinate of top left corner of dropdown menu
var backColor   = '#A6B0B3'; // the background color of dropdown menu, set empty '' for transparent
var hoverColor  = '#B9C1C4'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#074B59'; // 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
174, // 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 (
'What is IVF?', '/display.asp?page=what_is_IVF#pagetop',
'Finding a clinic', '/display.asp?page=finding_clinic#pagetop',
'Deciding on a clinic', '/display.asp?page=deciding_on_a_clinic#pagetop','IVF success rates', '/display.asp?page=success_rates#pagetop','IVF costs', '/display.asp?page=ivf_cost#pagetop','Involving your partner', '/display.asp?page=involve_partner#pagetop'
));

menuContent [1] = new Array (
-1,
-1,
174,
105, // 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 ('What is an RE?', '/display.asp?page=what_is_a_reproductive_endocrinologist#pagetop',
'The role of an RE', '/display.asp?page=role_of_RE#pagetop',
'The characteristics of an RE', '/display.asp?page=characteristics_of_a_re#pagetop'
));

menuContent [2] = new Array (
-1,
-1,
250,
220, // 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 ('Getting ready for your first appointment', '/display.asp?page=first_IVF_appointment#pagetop',
'Questions your doctor may ask you', '/display.asp?page=questions_doctor_may_ask#pagetop',
'Tests and Procedures', '/display.asp?page=test_procedures01#pagetop',
'Decision-making about IVF', '/display.asp?page=DECISION_MAKING01#pagetop',
'Steps in the IVF cycle', '/display.asp?page=Steps01#pagetop',
'Questions to ask your RE', '/display.asp?page=questions#pagetop'
));
menuContent [3] = new Array (
-1,
-1,
140,
429, // 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 (
'If IVF is not successful', '/display.asp?page=not_successful#pagetop'
));
menuContent [4] = new Array (
-1,
-1,
140,
575, // 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 ('Notebook', '/display.asp?page=notebook#pagetop',
'Glossary', '/display.asp?page=glossary#pagetop',
'Resources', '/display.asp?page=resources#pagetop',
'Feedback', '/display.asp?page=feedback#pagetop',
'Send to a friend', '/display.asp?page=thank_you#pagetop',
'Disclaimer', '/display.asp?page=disclaimer#pagetop',
'Privacy Policy', '/display.asp?page=privacy_policy#pagetop'
));