


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 200; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 200; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#FFCC00'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#CC0000'; 

// the color of dropdown menu border
var borderColor = '#CC0000'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu items
var itemHeight  = 15;

// overlapping between 
var xOverlap    = 1;
var yOverlap    = 1;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
150, // the width of current menu list 
200, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
108, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Back to Home', 'index.php'
));

menuContent [1] = new Array ( 
-1, 
-1,
150, // the width of current menu list 
262, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
108, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Mission', 'about_mission.html',
'History', 'about_history.html',
'Board of Directors', 'about_board.html',
'Housing Development', 'about_housing.html',
'Managed Work Services', 'about_managed.html',
'Support VIP', 'about_support.html',
'VIP Alumni Association', 'about_alumni.html'
));

menuContent [2] = new Array ( 
-1, 
-1,
180, // the width of current menu list 
352, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
108, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Behavioral Health Services', 'services_bhs.html', 
'Physical Health Services', 'services_phs.html', 
'Prevention Services', 'services_ps.html', 
'Recreational Services', 'services_rec.html', 
'Transitional & Supportive Housing', 'services_housing.html', 
'Vocational/Educational Services', 'services_ves.html',
'Testimonials', 'testimonials.php' 
));

menuContent [3] = new Array ( 
-1, 
-1,
150, // the width of current menu list 
442, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
108, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Latest News', 'news.html',
'Grants', 'grants.html'
));

menuContent [4] = new Array ( 
-1, 
-1,
150, // the width of current menu list 
562, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
108, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Press Releases', 'press.html'
));

menuContent [5] = new Array ( 
-1, 
-1,
150, // the width of current menu list 
632, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
108, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'A Rewarding Career Path', 'careers_path.html', 
'Compensation Benefits', 'careers_comp.html', 
'Training', 'careers_train.html', 
'Scholars Program', 'careers_scholars.html', 
'Career Case Study', 'careers_case.html',  
'Current Positions Available', 'careers_avail.html'
));

menuContent [6] = new Array ( 
-1, 
-1,
150, // the width of current menu list 
703, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
108, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Contact VIP', 'contact.html',
'Directions to VIP', 'directions.html',
'Links', 'links.html'
));

