// constants

// x-coordinate of top left corner of dropdown menu
var initX             = 100;

// y-coordinate of top left corner of dropdown menu
var initY             = 155;

// the background color of dropdown menu (set empty '' for transparent)  '#7788FF';
var backColor         = '#7788FF';

// the background color of after hover over (been there color)
var TopBackColor        = 'gray';

// the background color of selected menu items, set empty '' for transparent  '#B0C4DE';
var activeBackColor   = '#B0C4DE';

// the color of dropdown menu border
var borderColor = '';

// the width of menu border
var borderSize  = '0';

// height of menu itesm
var itemHeight  = 30;

// overlapping between
var xOverlap    = 5;
var yOverlap    = 8;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array (
-1,
-1,
1, // 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 ()
);

menuContent [1] = 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 (
'Free Programs', './free_programs.php',
'Demo Programs', './demo_programs.php'
));

menuContent [2] = new Array (
-1,
1,
150, // 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 (
'Computer Repair', './computer_repair.php',
'Networking', './networking.php',
'Programming', './programming.php',
'System Integration', './system_integration.php'
));

menuContent [3] = new Array (
-1,
1,
190, // 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 ());

menuContent [4] = new Array (
-1,
1,
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 (
'Email Service Request','./request.php',
'Phone (201)681-4957','./contact.php'
));


menuContent [5] = new Array (
-1,
1,
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 ());
