var gMenuItems = [
 ['WYAL INFO', gUrlBaseName + 'index.htm',
  ['Home', gUrlBaseName + 'index.htm'],
  ['About WYAL', gUrlBaseName + 'content/wyalinfo/aboutwyal.htm'],
  ['Bill of Rights', gUrlBaseName + 'content/wyalinfo/billofrights.htm'],
  ['Board', gUrlBaseName + 'content/wyalinfo/board.htm'],
  ['Bylaws', gUrlBaseName + 'content/wyalinfo/bylaws.htm'],
  ['Concussion Education', gUrlBaseName + 'content/wyalinfo/concussion_education.htm'],
  ['Documents/Forms', gUrlBaseName + 'content/wyalinfo/documents.htm'],
  ['FAQ', gUrlBaseName + 'content/wyalinfo/faq.htm'],
  ['Team Formation', gUrlBaseName + 'content/wyalinfo/teamformation.htm'],
 ],

 ['BASEBALL', gUrlBaseName + 'content/baseball/baseballhome.htm',
  ['Field Status/Maps', 'http://www.ci.woodbury.mn.us/parks-and-trails/athletic-fields-and-field-maps'],
  ['General Info', gUrlBaseName + 'content/baseball/baseballhome.htm'],
  ['Coach Info', gUrlBaseName + 'content/baseball/baseballresources.htm'],
/*
  ['Tournaments', gUrlBaseName + 'content/baseball/baseballtournaments.htm'],
*/
  ['Teams', null,
/*
   ['10 - Predators', gUrlBaseName + 'content/baseball/2011/2011-u10predators.htm'],
   ['10 - Warriors', gUrlBaseName + 'content/baseball/2011/2011-u10warriors.htm'],
   ['11 - Wildcats', gUrlBaseName + 'content/baseball/2011/2011-u11wildcats.htm'],
   ['11 - Wolverines', gUrlBaseName + 'content/baseball/2011/2011-u11wolverines.htm'],
   ['12 - Warriors', gUrlBaseName + 'content/baseball/2011/2011-u12warriors.htm'],
   ['13 - Panthers', gUrlBaseName + 'content/baseball/2011/2011-u13panthers.htm'],
   ['13 - Ticks', gUrlBaseName + 'content/baseball/2011/2011-u13ticks.htm'],
   ['14/15 - Warriors', gUrlBaseName + 'content/baseball/2011/2011-u15warriors.htm'],
*/
   ['Past Teams', gUrlBaseName + 'content/baseball/baseballpastteams.htm'],
  ],
 ],

 ['SOFTBALL', gUrlBaseName + 'content/softball/softballhome.htm',
  ['Field Status/Maps', 'http://www.ci.woodbury.mn.us/parks-and-trails/athletic-fields-and-field-maps'],
  ['General Info', gUrlBaseName + 'content/softball/softballhome.htm'],
  ['Coach Info', gUrlBaseName + 'content/softball/softballresources.htm'],
  ['Teams', null,
/*
   ['14U - Pickett', gUrlBaseName + 'content/softball/2011/2011-u14pickett.htm'],
   ['16U - Syvertsen', gUrlBaseName + 'content/softball/2007/2007-u16syvertsen.htm'],
*/
   ['Past Teams', gUrlBaseName + 'content/softball/softballpastteams.htm'],
  ],
 ],

 ['BASKETBALL', gUrlBaseName + 'content/basketball/basketballhome.htm',
  ['General Info', gUrlBaseName + 'content/basketball/basketballhome.htm'],
  ['Coach Info', gUrlBaseName + 'content/basketball/basketballresources.htm'],
  ['Teams', null,
/*
   ['5th - Carter', gUrlBaseName + 'content/basketball/2009-2010/2010-u11carter.htm'],
*/
   ['Past Teams', gUrlBaseName + 'content/basketball/basketballpastteams.htm'],
  ],
 ],

 ['SITE INFO', gUrlBaseName + 'content/wyalinfo/privacystatement.htm',
  ['Privacy Statement', gUrlBaseName + 'content/wyalinfo/privacystatement.htm'],
  ['Webmaster', 'mailto: webmaster@wyal.us'],
 ],
];

/* --- geometry and timing of the menu --- */
var gMenuPos = new Array();
 // item sizes for different levels of menu
 gMenuPos['height'] = [gMenuItemHeight, gMenuDropdownItemHeight, gMenuDropdownItemHeight];
 gMenuPos['width'] = [gMenuItemWidth, gMenuDropdownItemWidth, gMenuDropdownItemWidth];  // menu block offset from the origin:

 // for root level origin is upper left corner of the page
 // for other levels origin is upper left corner of parent item
 gMenuPos['block_top'] = [gMenuTop, gMenuItemHeight, 0];
 gMenuPos['block_left'] = [gMenuLeft, 0, gMenuDropdownItemWidth];
 
// offsets between items of the same level
 gMenuPos['top'] = [0, gMenuDropdownItemHeight + 1, gMenuDropdownItemHeight + 1];
 gMenuPos['left'] = [gMenuItemWidth, 0, 0];

 // time in milliseconds before menu is hidden after cursor has gone out
 // of any items
 gMenuPos['hide_delay'] = [200, 200, 200];

/* --- dynamic menu styles ---
note: you can add as many style properties as you wish but beware not all browsers are able to render them correctly. The only relatively safe properties are 'color' and 'background'. */
 var gMenuStyles = new Array();  // default item state when it is visible but doesn't have mouse over
  gMenuStyles['onmouseout'] = [
  'background', [gColorRoyalBlue, gColorSilver, gColorRoyalBlue],
  'color', [gColorWhite, gColorWYALBlue, gColorWhite],
  'fontWeight', ['bold', 'normal', 'normal'],
  'textAlign', ['center', 'left', 'left'],
  'textDecoration', ['none', 'none', 'none'],
 ];

 // state when item has mouse over it
  gMenuStyles['onmouseover'] = [
  'background', [gColorWYALBlue, gColorWYALBlue, gColorWYALBlue],
  'color', [gColorWhite, gColorWhite, gColorWhite],
  'fontWeight', ['bold', 'normal', 'normal'],
  'textDecoration', ['none', 'none', 'none'],
 ];

 // state when mouse button has been pressed on the item
  gMenuStyles['onmousedown'] = [
  'background', [gColorWYALBlue, gColorSilver, gColorRoyalBlue],
  'color', [gColorWhite, gColorWYALBlue, gColorSilver],
  'fontWeight', ['bold', 'normal', 'normal'],
  'textDecoration', ['none', 'none', 'none'],
 ];

 

