// write me if you have questions: web.master@male.net


// constants
var initX       = 500; // x-coordinate of top left corner of dropdown menu 
var initY       = 500; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#96BB27'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#659C15'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 15;
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
150, // the width of current menu list 
71, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate   //old value 112
103, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Business Intelligence', 'services_bi.php4',
'Emerging Technologies', 'services_emer_tech.php4',
'On Demand', 'services_demand.php4',
'Quality Assurance','services_quality_assurance.php4',
'IT Business Management','services_itbm.php'
));

menuContent [1] = 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
170, // the width of current menu list 
155, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate   //old value 196
103, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Control/Risk Assessments', 'products_ctrl_risk.php4',
'Feedback Management', 'products_feedback_mgmt.php4'
));

menuContent [2] = 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
140, // the width of current menu list 
247, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate   //old value 288
103, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
//'BFSI', 'case_studies_fin1.php4',
//'Financials', 'case_studies_fin1.php4',
//'Health Care', 'case_studies_hlth_care1.php4',
//'High Tech', 'case_studies_high_tech.php4',
//'Telecom', 'case_studies_telecom.php4'
));

menuContent [3] = 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
140, // the width of current menu list 
515, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate   //old value 288
103, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Management', 'about_us_mgmt.php4',
'Careers', 'about_us_career_sub.php4'
));






