// constants
var initX       = 0; // x-coordinate of top left corner of dropdown menu 
var initY       = 0; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FFFFFF'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#292F8D'; // 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 
45, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
35, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Mission', 'about.html#mission target=RightFrame',
'Rental', 'about.html#rental target=RightFrame',
'Homeownership', 'about.html#homeownership target=RightFrame',
'Community Investment Tax Credits', 'about.html#citc target=RightFrame',
'Staff', 'about.html#staff target=RightFrame',
'Board of DIrectors', 'about.html#bod target=RightFrame',
'Advisory Board', 'about.html#advisory target=RightFrame',
'History', 'about.html#history target=RightFrame'
));

menuContent [1] = new Array ( 
-1, 
-1,
10,
45, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
303, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Staff', 'staff.html#staff target=RightFrame',
'Board of DIrectors', 'staff.html#bod target=RightFrame',
'Advisory Board', 'staff.html#advisory target=RightFrame'
));

menuContent [2] = new Array ( 
-1, 
-1,
10,
0, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
0, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
));

menuContent [3] = new Array ( 
-1, 
-1,
10,
45, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
363, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Awards', 'awards.html#awards target=RightFrame',
'Press', 'awards.html#press target=RightFrame'
));

menuContent [4] = new Array ( 
-1, 
-1,
10,
45, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
94, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Homeownership Counseling', 'own.html#counseling target=RightFrame',
'Workshop Registration', 'register.html target=Blank',
'ADDI', 'own.html#addi target=RightFrame',
'Homes for Sale', 'own.html#sale target=RightFrame',
'Work & Live College Park', 'livework.html target=RightFrame'
));

menuContent [5] = new Array ( 
-1, 
-1,
10,
45, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
232, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'HIPs Artists Housing', 'rent.html#artists target=RightFrame',
'Renaissance Square', 'rent.html#renaissance target=RightFrame',
'Newton Green', 'rent.html#newton target=RightFrame'
));

menuContent [6] = new Array ( 
-1, 
-1,
10,
45, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
266, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'HIP Services Inc.', 'services.html#HIPservices target=RightFrame',
'HIP Kids Summer Camp', 'services.html#HIPkids target=RightFrame',
'Reading is Fundamental', 'services.html#rif target=RightFrame',
'Street Scholarship', 'services.html#streetscholarship target=RightFrame'
));

menuContent [7] = new Array ( 
-1, 
-1,
10,
0, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
0, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
));

menuContent [8] = new Array ( 
-1, 
-1,
10,
45, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
170, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'News and Information', 'ficnews.html target=RightFrame',
'Prince George`s County Office', 'ficpg.html target=RightFrame',
'Montgomery County Office', 'ficmont.html target=RightFrame'
));
