
var initX       = 0; // x-coordinate of top left corner of dropdown menu 
var initY       = 120; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#AFC9E4'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#014FA2'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 14;
var xOverlap    = 4;
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
105, // the width of current menu list 
98, // 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 (
'Homepage', 'index.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
210,
178, // 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 (
'Emergency Shelter System', 'housing-ess.html',
'Landlord-Tenant', 'housing-llt.html',
'Housing Support', 'housing-support.html',
'Youth Trustee Program', 'housing-youth-trustee.html',
'Housing Registry', 'housing-reg.html',
'Food Security', 'housing-foodsecurity.html',
'Gift of Life Community Garden', 'housing-GiftOfLife.html'
));

menuContent [2] = new Array ( 
-1, 
-1,
180,
283, // 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 (
'Volunteer Support', 'volunteer.html',
'On-Line Opportunities', 'http://communitylink.cioc.ca/volunteer/ target="_blank"',
'Change the World', 'change-the-world.html'
));

menuContent [3] = new Array ( 
-1, 
-1,
240,
446, // 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 (
'Transportation Linking Communities', 'Trans-linking.html',
'Accessible Transit Services', 'Trans-access.html',
'Home at Last', 'Trans-hal.html'
));

menuContent [4] = new Array ( 
-1, 
-1,
240,
654, // 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 (
'Community Information Services', 'info-referral.html'
));

menuContent [5] = new Array ( 
-1, 
-1,
110,
844, // 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 (
'Contact', 'contact.html'
));






