
// constants

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

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

var backColor   = '#E6E6E6'; 	// the background color of dropdown menu, set empty '' for transparent

var borderColor = '#577ade'; 	// the color of dropdown menu border

var borderSize  = '2'; 		// the width of dropdown menu border

var itemHeight  = 20;

var xOverlap    = 5;

var yOverlap    = 10;

var webroot = "http://www.iit.edu/~ipro307f/"

//



menuContent     = new Array ();


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

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 (

'Spring 2003', webroot + 'index.html',

'Fall 2002', webroot + '../~ipro307f02',

'Spring 2002', webroot + '../~ipro307s02',

'IPRO Home', 'http://ipro.iit.edu/new/'


));


menuContent [1] = new Array ( 
-1, 
-1,

120,
-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 (

'Final Report', webroot + 'project/final.html',

'Midterm Report', webroot + 'project/midterm.html',

'Project Plan', webroot + 'project/plan.html',

'Meeting Minutes', webroot + 'project/minutes.html',

'Advisors', webroot + 'team/advisors.html'));


menuContent [2] = new Array ( 

-1, 

-1,

119,

-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 (

'Business Plan', webroot + 'business/plan.html',
'Meeting Minutes', webroot + 'business/minutes.html',

'Team Members', webroot + 'team/business.html'));




menuContent [3] = new Array ( 

-1, 

-1,

140,

-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 (


'USX Site, WindData', webroot + 'winddata/',

'Meeting Minutes', webroot + 'technical/minutes.html',
'Team Members', webroot + 'team/technical.html'));




menuContent [4] = new Array ( 

-1, 

-1,

132,

-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 (

'Turbine Installation', webroot + 'turbine.html',

'Ground Breaking', webroot + 'ground.html',

'USX Site', webroot + 'usx.html'));


