// 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       = 30; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FFFFFF'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#005500'; // 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
100, // the width of current menu list 
0, // 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 (
'Our Communities', 'communities.html',
'Our Organization', 'aboutvhi.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
100,
90, // 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 (
'Presidents Letter', 'presidentsletter.html',
'FAQs - Family Apartments', 'faqmfh.html',
'FAQs - Senior Apartments', 'faqil.html',
'Key Staff', 'staff.html',
'Our Board', 'board.html',
'Awards', 'awards.html',
'Corporate Brochure', 'pdfs/VHBroch2007.pdf'
));

menuContent [2] = new Array ( 
-1, 
-1,
100,
180, // 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 (
'Bartholomew House', 'bart.html', 
'Byron House', 'byron.html',
'Grace House', 'grace.html', 
'Malta House', 'malta.html', 
'Marian Assisted Living', 'marian.html', 
'Marys House', 'marys.html', 
'Raphael House', 'raphael.html'
));

menuContent [3] = new Array ( 
-1, 
-1,
100,
270, // 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 (
'Andrew Kim House', 'kim.html',
'Avondale Park Apartments', 'avondale.html',
'Cheval Court Apartments', 'chevalcourt.html',
'Manor Apartments', 'manor.html',
'Trinity Terrace', 'trinity.html',
'Victory Forest', 'vicforest.html',
'Victory Heights', 'vicheights.html',
'Victory House of Palmer Park', 'palmerpark.html',
'Victory Terrace', 'victory.html',
'Victory Tower', 'victorytower.html'
));

menuContent [4] = new Array ( 
-1, 
-1,
100,
360, // 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 (

'Cambridge Apartments', 'cambridge.html',
'Parkfair Apartments', 'parkfair.html',
'Winslow House', 'winslow.html'
));

menuContent [5] = new Array ( 
-1, 
-1,
100,
450, // 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 (
'Current News', 'news.html',
'Newsletter Archive', 'news.html#na',
'VHI Videos', 'video.html'
));

menuContent [6] = new Array ( 
-1, 
-1,
100,
540, // 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 (
'Downloadable Donation Form', 'download.pdf'
));

menuContent [7] = new Array ( 
-1, 
-1,
100,
630, // 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 (
'Key Staff', 'staff.html',
'Contact Form', 'contactform.html'
));
