// constants

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

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

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

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

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

// 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, 
120, // 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 Us', 'contact.html'
));


menuContent [1] = new Array ( 
-1, 
-1,
120, // 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 (
'Our Founder', 'founder.html',
'Our Directors', 'directors.html',
'Our Teachers', 'teachers.html'
));

menuContent [2] = new Array ( 
-1, 
-1,
140, // 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 (
'Student Services', 'student.html', 
'Adult Programs', 'adult.html',
'Business Programs', 'business.html',
'Community', 'outreach.html'
));