


// constants

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

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

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

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

// the color of dropdown menu border
var borderColor = 'dad4d7'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 18;

// overlapping between 
var xOverlap    = 10;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
148, // the width of current menu list 
165, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Statement of Philosophy', './index.php?page=data&id=philosophy', '',
'Board of Directors', './index.php?page=data&id=boarddirectors', '',
'Coaches', './index.php?page=data&id=listofcoaches', '',
'Club Rankings', './index.php?page=data&id=clubrankings', ''
));//aboutus

menuContent [1] = new Array ( 
-1, 
-1,
100, // the width of current menu list 
247, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Show All Teams', '../web/teamsdisplay.php', ''
));//Teams

menuContent [2] = new Array ( 
-1, 
-1,
110, // the width of current menu list 
300, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Information/Directions', './index.php?page=data&id=info/direct', '',
'Schedule', './index.php?page=data&id=schedule', '',
'Player Information Sheet (PDF)', '../userfiles/questionnaire.pdf', ''
));//Tryouts

menuContent [3] = new Array ( 
-1, 
1,
120, // the width of current menu list 
356, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Goalie Training', './index.php?page=data&id=goalietraining', '',
'ODP', './index.php?page=data&id=playerdevelop', '',
'College Night', './index.php?page=data&id=collegenight', ''
));//player development

menuContent [4] = new Array ( 
-1, 
-1,
140, // the width of current menu list 
485, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Hot News and Information', './index.php?page=data&id=clubhotnews', '',
'Tournaments', './index.php?page=data&id=tournaments', '',
'Alumni News', './index.php?page=data&amp;id=alumni', '',
'Spiritwear', './index.php?page=data&id=spiritwear', '',
'Newsletter', './index.php?page=data&id=newsletter', '',
'Community Outreach Programs', './index.php?page=data&id=community', '',
'Social Events', './index.php?page=data&id=events', ''
));//club & alumni News

/*
For submenus
menuContent [3] = new Array ( 
0, 
1,
120, // the width of current menu list 
-1, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Item 121', 'http://www.121.net', '',
'Item 122', 'http://www.122.net', '',
'Item 123', 'http://www.123.net', 'loc.gif'
));

menuContent [4] = new Array ( 
3, 
2,
120, // the width of current menu list 
-1, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Item 1231', 'http://www.1231.net', '',
'Item 1232', 'http://www.1232.net', '',
'Item 1133', 'http://www.1233.net', ''
));

*/