
var initX       = 400; // x-coordinate of top left corner of dropdown menu 
var initY       = 150; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#C4D4E3'; // 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  = 16;
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
73, // 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 (
'Who Are We', 'corp-who.htm',
'What We Do', 'corp-what.htm',
'Our Clients', 'corp-clients.htm'
));

menuContent [1] = new Array ( 
-1, 
-1,
73,
-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 (
'Process Serving', 'bail-process.htm',
'Landlord Distraints', 'bail-landlord.htm',
'Commercial Lockouts', 'bail-lockout.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
73,
-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 (
'Vehicle Recovery', 'recov-vehicle.htm',
'Equipment Recovery', 'recov-equip.htm',
'Municipal Tax Recovery', 'recov-tax.htm'
));

menuContent [3] = new Array ( 
-1, 
-1,
73,
-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 (
'Liquidation', 'auc-liquid.htm',
'Auction', 'auc-auction.htm',
'Storage', 'auc-storage.htm'
));

menuContent [4] = new Array ( 
-1, 
-1,
73,
-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 (
'Paralegal', 'other-para.htm',
'Appraisal', 'other-appra.htm',
'Mediation', 'other-mediat.htm',
'Skip Tracing', 'other-skip.htm'
));

menuContent [5] = new Array ( 
-1, 
-1,
73,
-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 (
'Service Area', 'servicearea.htm'
));

menuContent [6] = new Array ( 
-1, 
-1,
73,
-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 (
'Contact Information', 'contact.htm',
'Email Us', 'mailto:info@bailiff.on.ca'
));





