// constants
var initX       = 100; // x-coordinate of top left corner of dropdown menu 
var initY       = 125; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#EADB86'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#000000'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
//


menuContent     = new Array ();

//People
menuContent [0] = new Array (
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
100, // the width of current menu list 
135, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
160, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
1, // number of columns
0, // vertical = 0, horizontal = 1
new Array (
'Faculty', 'about/people.html',
'Research Associates', 'about/people.html',
'Research Assistants', 'about/people/researchAssist.html',
'Staff', 'about/people/staff.html',
'Alumni', 'about/people/alumni.html'
));

//Technical Report System
menuContent [1] = new Array (
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
150, // the width of current menu list 
135, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
250, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate (235 previous)
1, // number of columns
0, // vertical = 0, horizontal = 1
new Array (
'Technical Report System', 'publication/techReport.html'
));

//Projects
menuContent [2] = new Array (
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
100, // the width of current menu list 
135, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
280, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate (260 previous)
1, // number of columns
0, // vertical = 0, horizontal = 1
new Array (
'COCOMO', 'research/COCOMOII/cocomo_main.html',
'COSOSIMO', 'research/COSOSIMO/index.html',
'HDCP', 'http://csse.usc.edu/hdcp/pages/home.htm',
'Software Architecture', 'http://sunset.usc.edu/%7Esoftarch/',
'Value Based Software Engineering', 'http://sunset.usc.edu/csse/research/valueroi.html',
'Security Economics and COTS Security','research/COTS_Security/index.html',
'ICM','research/ICM/index.html'
));
