// Last change July 14 2003
// Developed by ddmenu@inbox.ru


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 1; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 275; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#FF924F'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#F8701C'; 

// the color of dropdown menu border
var borderColor = 'white'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 20;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
125, // 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 (
'Contact Information', 'contact-information.php',
'Technical Skills', 'technical-skills.php',
'How We Work', 'how-we-work.php',
'Client Profile', 'client-profile.php'
));

menuContent [1] = new Array ( 
-1, 
-1,
133, // 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 (
'Enterprise Systems', 'enterprise-system.php', 
'Custom Programming', 'custom-programming.php', 
'Sub-Contracts', 'sub-contracts.php',
'Outsourcing', 'outsourcing.php'
));

menuContent [2] = new Array ( 
-1, 
1,
130, // 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 (
'E-Commerce', 'e-commerce.php', 
'Web Design', 'web-design.php', 
'Web Applications', 'web-applications.php'
));

menuContent [3] = new Array ( 
-1, 
1,
130, // 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 (
'Case Studies', 'case-studies.php', 
'Some Designs', 'designs.php' 
));

menuContent [4] = new Array ( 
-1, 
1,
130, // 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 (
'Current Openings', 'current-openings.php', 
'Submit Resume ', 'submit-resume.php'
));

menuContent [5] = new Array ( 
-1, 
1,
131, // 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 (
'Windows', 'windows.php', 
'Linux/ UNIX', 'linux.php', 
'Java', 'java.php',
'Databases', 'database.php',
'Handheld', 'handheld.php',
'Whitepapers ', 'whitepapers.php'
));


