// write me if you have questions: web.master@male.net

// constants
var initX       = 108; // x-coordinate of top left corner of dropdown menu 
var initY       = 434; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FFFFFF'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#005543'; // the color of dropdown menu border #FFCC00
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 2;
var xOverlap    = 1;
var yOverlap    = 1;
//

if (!dirloc) { var dirloc = ""; }  // used for questionnaires/forms since they are located in a sub directory

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
160, // 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 (
'Experts/Consultants', '#',		   
'Expert Witnesses', 'http://www.lawfundmgmtgroup.com/findexpert.cfm',
'Litigation Support/Forensic Accounting', 'http://www.lawfundmgmtgroup.com/litigation.cfm',
'Bankruptcy Trustees', 'http://www.lawfundmgmtgroup.com/bankruptcy.cfm'
));

menuContent [1] = new Array ( 
-1, 
-1,
140,
430, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
287, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Sales and Service', 'http://www.lawfundmgmtgroup.com/sales.html',
'SIM and Top-Up Cards', 'http://www.lawfundmgmtgroup.com/sim.html',
'Phones and Accessories', 'http://www.lawfundmgmtgroup.com/phones.html',
'Roaming', 'http://www.lawfundmgmtgroup.com/roaming.html',
'Customer Service', 'http://www.lawfundmgmtgroup.com/customer_service.html',
'Find a Store', 'http://www.lawfundmgmtgroup.com/findastore.html'
));

menuContent [2] = new Array ( 
-1, 
-1,
140,
430, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
408, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Press Releases', 'http://www.lawfundmgmtgroup.com/press.html',
'Media Coverage', 'http://www.lawfundmgmtgroup.com/media.html',
'A Nation on the Line', 'http://www.lawfundmgmtgroup.com/nation.html',
'Gallery', 'http://www.lawfundmgmtgroup.com/gallery.html'
));

menuContent [3] = new Array ( 
-1, 
-1,
102,
-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 (
'Suppliers', 'http://www.lawfundmgmtgroup.com/oursup.html',
'Become A Supplier', 'http://www.lawfundmgmtgroup.com/becomesup.html'
));

menuContent [4] = new Array ( 
-1, 
-1,
100,
-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 Form', 'http://www.lawfundmgmtgroup.com/ctctform.html',
'Offices', 'http://www.lawfundmgmtgroup.com/offices.html',
'Become An Agent', 'http://www.lawfundmgmtgroup.com/agent.html'
));




