// constants

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

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

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

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

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

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

// height of menu itesm
var itemHeight  = 10;

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

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
155, // 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 (
'Internet Solutions', 'http://www.sourcis.com/internet.html',
'Software Solutions', 'http://www.sourcis.com/software.html'
));

menuContent [1] = new Array ( 
-1, 
1,
405, // 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 (
'Item 31', 'http://www.31.net', 
'Item 32', 'http://www.32.net', 
'Item 33', 'http://www.33.net'
));

menuContent [2] = 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 (
'About Us', 'http://www.sourcis.com/about.html', 
'Locate Us', 'http://www.sourcis.com/locate.html', 
'Hours', 'http://www.sourcis.com/hours.html',
'Contact Us', 'http://www.sourcis.com/contact.html'
));



