
// x-coordinate of top left corner of dropdown menu 
var initX             = 100; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 25; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#778899'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#B0C4DE'; 

// 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, 
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 (
'About AEES', 'about_aees.html',
'AEC Schools', 'aec_schools.html',
'Academic Unit', 'academic_unit.html',
'Governing Body', 'governing_body.html',
'FAQs', 'faq.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 (
'Strength at AEES', 'staff_strength_aees.html', 
'School-wise list', 'staff_details.html', 
'Strength (school)', 'staff_strength_school_wise.html',
'Strength(subject)', 'staff_details.html', // **** To be included later
'Quick Reference', 'quick_reference.html'

));

menuContent [2] = 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 (
'Teachers test', 'teachers_test.html', 
'TT Guidelines', 'tt_guidelines.html', 
'TT Syllabus', 'tt_syllabus.html',
'MBU Scheme', 'mbu_scheme.html',
'AEES Awards', 't_awards.html'
));


menuContent [3] = 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 (
'Exam Policy', 'examinations.html', 
'Result Statistics', 'schoolwise_results.html', 
'Toppers', 'results.html', 
'Board Results', 'aees_board.html', 
'Exam Schedule', 'results.html' // **** To be included later
));

menuContent [4] = 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 (
'Sports','sports.html',
'TNP','highlights.html',
'Downloads', 'downloads.html', 
'Links', 'links.html', 
'Recruitment', 'recruitment.html'
));
