
// write me if you have questions: web.master@male.net

// constants
var initX       = 152; // x-coordinate of top left corner of dropdown menu 
var initY       = 107; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#5B81A8'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#496897'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 0;
var yOverlap    = 0;
//


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
130, // the width of current menu list 
164, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
131, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Types of Services', '/uniglobe/services/types_of_services/code.asp',
'Services Available', '/uniglobe/services/services_available/code.asp',
'Expedited Truckloads', '/uniglobe/services/expedited_truckloads/code.asp',
'Speciality Services', '/uniglobe/services/speciality_services/code.asp'
));

menuContent [1] = new Array ( 
-1, 
-1,
90,
164, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
181, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Safety First', '/uniglobe/safety_first/safety_first/code.asp',
'Certification', '/uniglobe/safety_first/certification/code.asp',
'Our Team', '/uniglobe/about_us/our_team/code.asp'
));

menuContent [2] = new Array ( 
-1, 
-1,
80,
330, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
31, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Our Mission', '/uniglobe/about_us/our_mission/code.asp',
'Our Team', '/uniglobe/about_us/our_team/code.asp'
));

menuContent [3] = new Array ( 
-1, 
-1,
130,
400, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
31, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Types of Services', '/uniglobe/services/types_of_services/code.asp',
'Services Available', '/uniglobe/services/services_available/code.asp',
'Expedited Truckloads', '/uniglobe/services/expedited_truckloads/code.asp',
'Speciality Services', '/uniglobe/services/speciality_services/code.asp'
));

menuContent [4] = new Array ( 
-1, 
-1,
100,
620, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
31, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Why Uniglobe ?', '/uniglobe/career_opportunity/why_uniglobe/code.asp',
'Owner Operator', '/uniglobe/career_opportunity/owner_operator/code.asp'
));

menuContent [5] = new Array ( 
-1, 
-1,
100,
708, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
31, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Contact Info', '/uniglobe/contact_us/contact_info/code.asp',
'POD', '/uniglobe/contact_us/pod/code.asp',
'Online System', '/uniglobe/contact_us/online_system/code.asp',
'Forms Archive', '/uniglobe/contact_us/forms_archive/code.asp',
'Request Info', '/uniglobe/contact_us/request_info/code.asp'
));





