<!--
// Syntaxes: *** START EDITING HERE, READ THIS SECTION CAREFULLY! ***
//
// menu[menuNumber][0] = new Menu(Vertical menu? (true/false), 'popout indicator', left, top,
// width, 'mouseover colour', 'background colour', 'border stylesheet', 'text stylesheet');
//
// Left and Top are measured on-the-fly relative to the top-left corner of its trigger, or
// for the root menu, the top-left corner of the page.
//
// menu[menuNumber][itemNumber] = new Item('Text', 'URL', 'target frame', length of menu item,
//  additional spacing to next menu item, number of target menu to popout);
//
// If no target menu (popout) is desired, set it to 0. Likewise, if your site does not use
// frames, pass an empty string as a frame target.

// The 'length' and 'width' of an item depends on its orientation -- length is how long the item runs for 
var menu = new Array();

// Default colours passed to most menu constructors 
var defOver = '#1A5C9F', defBack = '#004891';

// Default 'length' of menu items - item height if menu is vertical, width if horizontal.
var defLength = 22;

//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
// MAIN MENU:: Menu 0 is the special, 'root' menu from which everything else arises.
menu[0] = new Array();

// A non-vertical menu with a few different colours and no popout indicator, as an example.
// *** MOVE ROOT MENU AROUND HERE ***  it's positioned at (50, 0) and is 17px high now.
menu[0][0] = new Menu(false, '', 100, 0, 17, '#1A5C9F', '#004891', '', 'itemText');

// The 'length' of each of these items is 40, and there is spacing of 20 to the next item.
// Most of the links are set to '#' hashes, make sure you change them to actual files.
menu[0][1] = new Item(' Home', '../../../default.htm', '', 40, 40, 0);
menu[0][2] = new Item(' Club ', '../../../club/about.htm', '', 40, 40, 1);
menu[0][3] = new Item(' Reports', '../../../reports/latest_results.htm', '', 40, 40, 3);
menu[0][4] = new Item(' Teams', '../../../teams/team_info.htm', '', 40, 40, 8);
menu[0][5] = new Item(' Calendar', '../../../calendar/calendar.htm', '', 40, 50, 9);
menu[0][6] = new Item(' Links', '../../../links.htm', '', 40, 40, 10);
menu[0][7] = new Item(' Records', '../../../grade_records.htm', '', 40, 40, 12);
menu[0][8] = new Item(' Humour', '../../../humour/humour.htm', '', 40, 40, 31);
menu[0][9] = new Item(' Photos', '../../../photos/photo.htm', '', 40, 40, 32);
menu[0][10] = new Item(' Site Map', '../../../site_map.htm', '_new', 60, 40, 0);

// File menu.
menu[1] = new Array();
// The File menu is positioned -5px across and 16 down from its trigger, and is 80 wide.
// All text in this menu has the stylesheet class 'item' -- see the <style> section above.
// We've passed a 'greater-than' sign '>' as a popout indicator. Try an image...?
menu[1][0] = new Menu(true, '>', -5, 16, 90, defOver, defBack, 'itemBorder', 'itemText');
menu[1][1] = new Item('Club News', '../../../club/club_news.htm', '', defLength, 0, 2);
menu[1][2] = new Item('Sponsorship', '../../../club/sponsorship.htm', '', defLength, 0, 0);
// Non-zero target means this will trigger a popout -- menu[4] which is the 'Reopen' menu.
menu[1][3] = new Item('Committee', '../../../club/committee.htm', '', defLength, 0, 0);
menu[1][4] = new Item('Playing Fees', '../../../club/playing_fees.htm', '', defLength, 0, 0);
menu[1][5] = new Item('Merchandise', '../../../club/merchandise.htm', '', defLength, 0, 0);
menu[1][6] = new Item('Contact Us', '../../../club/contact.htm', '', defLength, 0, 0);
menu[1][7] = new Item('Insurance', '../../../club/insurance.htm', '', defLength, 0, 0);
menu[1][8] = new Item('Library', '../../../club/library.htm', '', defLength, 0, 0);

menu[2] = new Array();
// This is across but not down...
menu[2][0] = new Menu(true, '>', 89, 0, 100, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[2][1] = new Item('Past News 05:', '../../../club/news/season_2005/old_news50.htm', '', 22, 0, 0);
menu[2][2] = new Item('Past News 04:', '../../../club/news/season_2004/old_news.htm', '', 22, 0, 0);

// Edit menu.
menu[3] = new Array();
menu[3][0] = new Menu(true, '>', -10, 16, 90, defOver, defBack, 'itemBorder', 'itemText');
menu[3][1] = new Item('2008-2009', '../../../reports/season_2009.htm', '', defLength, 0, 38);
menu[3][2] = new Item('2007-2008', '../../../reports/season_2008.htm', '', defLength, 0, 37);
menu[3][3] = new Item('2006-2007', '../../../reports/season_2007.htm', '', defLength, 0, 4);
menu[3][4] = new Item('2005-2006', '../../../reports/season_2006.htm', '', defLength, 0, 34);
menu[3][5] = new Item('2004-2005', '../../../reports/season_2005.htm', '', defLength, 0, 0);
menu[3][6] = new Item('2003-2004', '../../../reports/season_2004.htm', '', defLength, 0, 0);
menu[3][7] = new Item('2002-2003', '../../../reports/season_2003.htm', '', defLength, 0, 0);
menu[3][8] = new Item('2001-2002', '../../../reports/season_2002.htm', '', defLength, 0, 0);

// Edit menu.
menu[38] = new Array();
menu[38][0] = new Menu(true, '>', 89, 0, 80, defOver, defBack, 'itemBorder', 'itemText');
menu[38][1] = new Item('Round 1', '../../../reports/season2009/round_01.htm', '', defLength, 0, 0);
menu[38][2] = new Item('Round 2', '../../../reports/season2009/round_02.htm', '', defLength, 0, 0);
menu[38][3] = new Item('Round 3', '../../../reports/season2009/round_03.htm', '', defLength, 0, 0);
<!-- menu[38][4] = new Item('Round 4', '../../../reports/season2009/round_04.htm', '', defLength, 0, 0);
<!-- menu[38][5] = new Item('Round 5', '../../../reports/season2009/round_05.htm', '', defLength, 0, 0);
<!-- menu[38][5] = new Item('Round 6', '../../../reports/season2009/round_06.htm', '', defLength, 0, 0);
<!-- menu[38][7] = new Item('Round 7', '../../../reports/season2009/round_07.htm', '', defLength, 0, 0);
<!-- menu[38][8] = new Item('Round 8', '../../../reports/season2009/round_08.htm', '', defLength, 0, 0);
<!-- menu[38][9] = new Item('Round 9', '../../../reports/season2009/round_09.htm', '', defLength, 0, 0);
<!-- menu[38][10] = new Item('Round 10', '../../../reports/season2009/round_10.htm', '', defLength, 0, 0);
<!-- menu[38][11] = new Item('Round 11', '../../../reports/season2009/round_11.htm', '', defLength, 0, 0);
<!-- menu[38][12] = new Item('Round 12', '../../../reports/season2009/round_12.htm', '', defLength, 0, 0);
<!-- menu[38][13] = new Item('Round 13', '../../../reports/season2009/round_13.htm', '', defLength, 0, 0);
<!-- menu[38][14] = new Item('Round 14', '../../../reports/season2009/round_14.htm', '', defLength, 0, 0);
<!-- menu[38][15] = new Item('Round 15', '../../../reports/season2009/round_15.htm', '', defLength, 0, 0);
<!-- menu[38][16] = new Item('Semi Finals', '../../../reports/season2009/round_semis.htm', '', defLength, 0, 0);
<!-- menu[38][17] = new Item('Grand Finals', '../../../reports/season2009/round_the_finals.htm', '', defLength, 0, 0);

// Edit menu.
menu[37] = new Array();
menu[37][0] = new Menu(true, '>', 89, 0, 80, defOver, defBack, 'itemBorder', 'itemText');
menu[37][1] = new Item('Round 1', '../../../reports/season2008/round_01.htm', '', defLength, 0, 0);
menu[37][2] = new Item('Round 2', '../../../reports/season2008/round_02.htm', '', defLength, 0, 0);
menu[37][3] = new Item('Round 3', '../../../reports/season2008/round_03.htm', '', defLength, 0, 0);
menu[37][4] = new Item('Round 4', '../../../reports/season2008/round_04.htm', '', defLength, 0, 0);
<!-- menu[37][5] = new Item('Round 5', '../../../reports/season2008/round_05.htm', '', defLength, 0, 0);
menu[37][5] = new Item('Round 6', '../../../reports/season2008/round_06.htm', '', defLength, 0, 0);
<!-- menu[37][7] = new Item('Round 7', '../../../reports/season2008/round_07.htm', '', defLength, 0, 0);
<!-- menu[37][8] = new Item('Round 8', '../../../reports/season2008/round_08.htm', '', defLength, 0, 0);
<!-- menu[35][9] = new Item('Round 9', '../../../reports/season2008/round_09.htm', '', defLength, 0, 0);
<!-- menu[37][10] = new Item('Round 10', '../../../reports/season2008/round_10.htm', '', defLength, 0, 0);
<!-- menu[37][11] = new Item('Round 11', '../../../reports/season2008/round_11.htm', '', defLength, 0, 0);
<!-- menu[37][12] = new Item('Round 12', '../../../reports/season2008/round_12.htm', '', defLength, 0, 0);
<!-- menu[37][13] = new Item('Round 13', '../../../reports/season2008/round_13.htm', '', defLength, 0, 0);
<!-- menu[37][14] = new Item('Round 14', '../../../reports/season2008/round_14.htm', '', defLength, 0, 0);
<!-- menu[37][15] = new Item('Round 15', '../../../reports/season2008/round_15.htm', '', defLength, 0, 0);
<!-- menu[37][16] = new Item('Semi Finals', '../../../reports/season2008/round_semis.htm', '', defLength, 0, 0);
<!-- menu[37][17] = new Item('Grand Finals', '../../../reports/season2008/round_the_finals.htm', '', defLength, 0, 0);

// Edit menu.
menu[4] = new Array();
menu[4][0] = new Menu(true, '>', 89, 0, 80, defOver, defBack, 'itemBorder', 'itemText');
menu[4][1] = new Item('Round 1', '../../../reports/season2007/round_01.htm', '', defLength, 0, 0);
menu[4][2] = new Item('Round 2', '../../../reports/season2007/round_02.htm', '', defLength, 0, 0);
menu[4][3] = new Item('Round 3', '../../../reports/season2007/round_03.htm', '', defLength, 0, 0);
menu[4][4] = new Item('Round 4', '../../../reports/season2007/round_04.htm', '', defLength, 0, 0);
menu[4][5] = new Item('Round 5', '../../../reports/season2007/round_05.htm', '', defLength, 0, 0);
menu[4][6] = new Item('Round 6', '../../../reports/season2007/round_06.htm', '', defLength, 0, 0);
<!-- menu[4][7] = new Item('Round 7', '../../../reports/season2007/round_07.htm', '', defLength, 0, 0);
<!-- menu[4][8] = new Item('Round 8', '../../../reports/season2007/round_08.htm', '', defLength, 0, 0);
<!-- menu[4][9] = new Item('Round 9', '../../../reports/season2007/round_09.htm', '', defLength, 0, 0);
<!-- menu[4][10] = new Item('Round 10', '../../../reports/season2007/round_10.htm', '', defLength, 0, 0);
<!-- menu[4][11] = new Item('Round 11', '../../../reports/season2007/round_11.htm', '', defLength, 0, 0);
<!-- menu[4][12] = new Item('Round 12', '../../../reports/season2007/round_12.htm', '', defLength, 0, 0);
<!-- menu[4][13] = new Item('Round 13', '../../../reports/season2007/round_13.htm', '', defLength, 0, 0);
<!-- menu[4][14] = new Item('Round 14', '../../../reports/season2007/round_14.htm', '', defLength, 0, 0);
<!-- menu[4][15] = new Item('Round 15', '../../../reports/season2007/round_15.htm', '', defLength, 0, 0);
<!-- menu[4][16] = new Item('Semi Finals', '../../../reports/season2007/round_semis.htm', '', defLength, 0, 0);
<!-- menu[4][17] = new Item('Grand Finals', '../../../reports/season2007/round_the_finals.htm', '', defLength, 0, 0);

// SUB-SUB MENU:: Reopen menu
menu[5] = new Array();
// This is across but not down...
menu[5][0] = new Menu(true, '>', 89, 0, 80, '#1A5C9F', '#004891', 'itemBorder', 'itemText');
menu[5][1] = new Item('Round 1', '../../../reports/season2004/round_1.htm', '', defLength, 0, 0);
menu[5][2] = new Item('Round 2', '../../../reports/season2004/round_2.htm', '', defLength, 0, 0);
menu[5][3] = new Item('Round 3', '../../../reports/season2004/round_3.htm', '', defLength, 0, 0);
menu[5][4] = new Item('Round 4', '../../../reports/season2004/round_4.htm', '', defLength, 0, 0);
menu[5][5] = new Item('Round 5', '../../../reports/season2004/round_5.htm', '', defLength, 0, 0);
menu[5][6] = new Item('Round 6', '../../../reports/season2004/round_6.htm', '', defLength, 0, 0);
menu[5][7] = new Item('Round 7', '../../../reports/season2004/round_7.htm', '', defLength, 0, 0);
menu[5][8] = new Item('Round 8', '../../../reports/season2004/round_8.htm', '', defLength, 0, 0);
menu[5][9] = new Item('Round 9', '../../../reports/season2004/round_9.htm', '', defLength, 0, 0);
menu[5][10] = new Item('Round 10', '../../../reports/season2004/round_10.htm', '', defLength, 0, 0);
menu[5][11] = new Item('Round 11', '../../../reports/season2004/round_11.htm', '', defLength, 0, 0);
menu[5][12] = new Item('Round 12', '../../../reports/season2004/round_12.htm', '', defLength, 0, 0);
menu[5][13] = new Item('Round 13', '../../../reports/season2004/round_13.htm', '', defLength, 0, 0);
menu[5][14] = new Item('Round 14', '../../../reports/season2004/round_14.htm', '', defLength, 0, 0);
menu[5][15] = new Item('Round 15', '../../../reports/season2004/round_15.htm', '', defLength, 0, 0);
menu[5][16] = new Item('Semi Finals', '../../../reports/season2004/mr_semis.htm', '', defLength, 0, 0);
menu[5][17] = new Item('Grand Final', '../../../reports/season2004/grand_final.htm', '', defLength, 0, 0);
menu[5][18] = new Item('Social', '../../../reports/season2004/social.htm', '', defLength, 0, 0);

menu[6] = new Array();
menu[6][0] = new Menu(true, '>', 89, 0, 80, defOver, defBack, 'itemBorder', 'itemText');
menu[6][1] = new Item('Round 1', '../../../reports/season2003/round_1.htm', '', defLength, 0, 0);
menu[6][2] = new Item('Round 2', '../../../reports/season2003/round_2.htm', '', defLength, 0, 0);
menu[6][3] = new Item('Round 3', '../../../reports/season2003/round_3.htm', '', defLength, 0, 0);
menu[6][4] = new Item('Round 4', '../../../reports/season2003/round_4.htm', '', defLength, 0, 0);
menu[6][5] = new Item('Round 5', '../../../reports/season2003/round_5.htm', '', defLength, 0, 0);
menu[6][6] = new Item('Round 6', '../../../reports/season2003/round_6.htm', '', defLength, 0, 0);
menu[6][7] = new Item('Round 7', '../../../reports/season2003/round_7.htm', '', defLength, 0, 0);
menu[6][8] = new Item('Round 8', '../../../reports/season2003/round_8.htm', '', defLength, 0, 0);
menu[6][9] = new Item('Round 9', '../../../reports/season2003/round_9.htm', '', defLength, 0, 0);
menu[6][10] = new Item('Round 10', '../../../reports/season2003/round_10.htm', '', defLength, 0, 0);
menu[6][11] = new Item('Round 11', '../../../reports/season2003/round_11.htm', '', defLength, 0, 0);
menu[6][12] = new Item('Round 12', '../../../reports/season2003/round_12.htm', '', defLength, 0, 0);
menu[6][13] = new Item('Round 13', '../../../reports/season2003/round_13.htm', '', defLength, 0, 0);
menu[6][14] = new Item('Round 14', '../../../reports/season2003/round_14.htm', '', defLength, 0, 0);
menu[6][15] = new Item('Round 15', '../../../reports/season2003/round_15.htm', '', defLength, 0, 0);
menu[6][16] = new Item('Semi Finals', '../../../reports/season2003/mr_semis.htm', '', defLength, 0, 0);
menu[6][17] = new Item('Grand Final', '../../../reports/season2003/grand_final.htm', '', defLength, 0, 0);
menu[6][18] = new Item('Social', '../../../reports/season2003/social.htm', '', defLength, 0, 0);

menu[7] = new Array();
menu[7][0] = new Menu(true, '>', 89, 0, 80, defOver, defBack, 'itemBorder', 'itemText');
menu[7][1] = new Item('Round 1', '../../../reports/season2002/round_1.htm', '', defLength, 0, 0);
menu[7][2] = new Item('Round 2', '../../../reports/season2002/round_2.htm', '', defLength, 0, 0);
menu[7][3] = new Item('Round 3', '../../../reports/season2002/round_3.htm', '', defLength, 0, 0);
menu[7][4] = new Item('Round 4', '../../../reports/season2002/round_4.htm', '', defLength, 0, 0);
menu[7][5] = new Item('Round 5', '../../../reports/season2002/round_5.htm', '', defLength, 0, 0);
menu[7][6] = new Item('Round 6', '../../../reports/season2002/round_6.htm', '', defLength, 0, 0);
menu[7][7] = new Item('Round 7', '../../../reports/season2002/round_7.htm', '', defLength, 0, 0);
menu[7][8] = new Item('Round 8', '../../../reports/season2002/round_8.htm', '', defLength, 0, 0);
menu[7][9] = new Item('Round 9', '../../../reports/season2002/round_9.htm', '', defLength, 0, 0);
menu[7][10] = new Item('Round 10', '../../../reports/season2002/round_10.htm', '', defLength, 0, 0);
menu[7][11] = new Item('Round 11', '../../../reports/season2002/round_11.htm', '', defLength, 0, 0);
menu[7][12] = new Item('Round 12', '../../../reports/season2002/round_12.htm', '', defLength, 0, 0);
menu[7][13] = new Item('Round 13', '../../../reports/season2002/round_13.htm', '', defLength, 0, 0);
menu[7][14] = new Item('Round 14', '../../../reports/season2002/round_14.htm', '', defLength, 0, 0);
menu[7][15] = new Item('Round 15', '../../../reports/season2002/round_15.htm', '', defLength, 0, 0);
menu[7][16] = new Item('Semi Finals', '../../../reports/season2002/semi_finals.htm', '', defLength, 0, 0);
menu[7][17] = new Item('Grand Final', '../../../reports/season2002/grand_final.htm', '', defLength, 0, 0);
menu[7][18] = new Item('Social', '../../../reports/season2002/social.htm', '', defLength, 0, 0);

// Help menu
menu[8] = new Array();
menu[8][0] = new Menu(true, '<', -10, 16, 80, defOver, defBack, 'itemBorder', 'itemText');
menu[8][1] = new Item('Selections', '../../../teams/team_selections.htm', '', defLength, 0, 0);
menu[8][2] = new Item('Grounds', '../../../teams/ground_locations.htm', '', defLength, 0, 0);
menu[8][3] = new Item('Draws', '../../../club/library.htm', '', defLength, 0, 0);
menu[8][4] = new Item('Grading', '../../../teams/grading.htm', '', defLength, 0, 0);

menu[9] = new Array();
menu[9][0] = new Menu(true, '<', -10, 16, 120, defOver, defBack, 'itemBorder', 'itemText');
menu[9][1] = new Item('Registration Day', '../../../calendar/registration_day.htm', '', defLength, 0, 0);
menu[9][2] = new Item('Season Launch', '../../../calendar/season_launch.htm', '', defLength, 0, 0);
menu[9][3] = new Item('Golf Day', '../../../calendar/golf_day.htm', '', defLength, 0, 0);
menu[9][4] = new Item('Christmas BBQ', '../../../calendar/christmas_bbq.htm', '', defLength, 0, 0);
menu[9][5] = new Item('Trivia Night', '../../../calendar/trivia_night.htm', '', defLength, 0, 0);
menu[9][6] = new Item('Presentation Night', '../../../calendar/presentation_night.htm', '', defLength, 0, 0);
menu[9][7] = new Item('A.G.M.', '../../../calendar/agm.htm', '', defLength, 0, 0);
menu[9][8] = new Item('Next Event', '../../../calendar/season_launch.htm', '', defLength, 0, 0);

menu[10] = new Array();
menu[10][0] = new Menu(true, '>', -10, 16, 100, defOver, defBack, 'itemBorder', 'itemText');
menu[10][1] = new Item('NDCA', 'http://www.ndca.nsw.cricket.com.au/', '', defLength, 0, 11);
menu[10][2] = new Item('Baggy Green', 'http://wwos.ninemsn.com.au/cricket', '', defLength, 0, 0);
menu[10][3] = new Item('Laws of Cricket', 'http://www.lords.org/laws-and-spirit/laws-of-cricket/', '', defLength, 0, 0);
menu[10][4] = new Item('Weather', 'http://www.bom.gov.au/cgi-bin/wrap_fwo.pl?IDN10064.txt', '', defLength, 0, 0);
menu[10][5] = new Item('Radar Loop', 'http://mirror.bom.gov.au/products/IDR033.loop.shtml', '', defLength, 0, 0);
menu[10][6] = new Item('Cricket Site', 'http://www.geocities.com/cricketsa/', '', defLength, 0, 0);
menu[10][7] = new Item('Skills Site', 'http://news.bbc.co.uk/sport2/hi/cricket/skills/default.stm', '', defLength, 0, 0);

// SUB-SUB MENU:: Help About popout
menu[11] = new Array();
//Leftwards popout with a negative x and y relative to its trigger.
menu[11][0] = new Menu(true, '>', 99, 0, 125, defOver, defBack, 'itemBorder', 'itemText');
menu[11][1] = new Item('Results', 'http://www.cricketnsw.com.au/ndca/hcresults.cl?PT=gs', '', 22, 0, 0);
menu[11][2] = new Item('Club Championship', 'http://www.cricketnsw.com.au/ndca/hcresults.cl?PT=cc&G=*&D=*', '', 22, 0, 0);
menu[11][3] = new Item('Grade Tables', 'http://www.cricketnsw.com.au/ndca/hcresults.cl?PT=dt&G=*&D=*', '', 22, 0, 0);
menu[11][4] = new Item('Vikings NDCA Site', 'http://www.vikingscc.nsw.cricket.com.au/', '', 22, 0, 0);
//menu[11][2] = new Item('Leftwards!', '#', '', 20, 0, 0);

menu[12] = new Array();
menu[12][0] = new Menu(true, '>', -10, 16, 140, defOver, defBack, 'itemBorder', 'itemText');
menu[12][1] = new Item('Season Statistics', '../../../grade_records.htm', '', defLength, 0, 13);
menu[12][2] = new Item('Grade Statistics', '../../../grade_records.htm', '', defLength, 0, 20);
menu[12][3] = new Item('Career Statistics', '../../../grade_records.htm', '', defLength, 0, 21);
menu[12][4] = new Item('Club/Grade Records', '../../../grade_records.htm', '', defLength, 0, 22);
menu[12][5] = new Item('Trophies', '../../../grade_records.htm', '', defLength, 0, 30);
menu[12][6] = new Item('Player Spotlight', '../../../stats/player_spotlight.htm', '', defLength, 0, 0);

menu[13] = new Array();
// This is across but not down...
menu[13][0] = new Menu(true, '>', 139, 0, 95, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[13][1] = new Item('1998-1999', '', '', 22, 0, 14);
menu[13][2] = new Item('1999-2000', '', '', 22, 0, 15);
menu[13][3] = new Item('2000-2001', '', '', 22, 0, 16);
menu[13][4] = new Item('2001-2002', '', '', 22, 0, 17);
menu[13][5] = new Item('2002-2003', '', '', 22, 0, 18);
menu[13][6] = new Item('2003-2004', '', '', 22, 0, 19);
menu[13][7] = new Item('2004-2005', '', '', 22, 0, 33);
menu[13][8] = new Item('2005-2006', '', '', 22, 0, 35);
menu[13][9] = new Item('2006-2007', '', '', 22, 0, 36);
menu[13][10] = new Item('2007-2008', '', '', 22, 0, 39);
menu[13][11] = new Item('2008-2009', '', '', 22, 0, 40);
menu[13][12] = new Item('2009-2010', '', '', 22, 0, 41);

menu[14] = new Array();
// This is across but not down...
menu[14][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[14][1] = new Item('Batting Statistics', '../../../stats/99_batting.htm', '', 22, 0, 0);
menu[14][2] = new Item('Bowling Statistics', '../../../stats/99_bowling.htm', '', 22, 0, 0);

menu[15] = new Array();
// This is across but not down...
menu[15][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[15][1] = new Item('Batting Statistics', '../../../stats/00_batting.htm', '', 22, 0, 0);
menu[15][2] = new Item('Bowling Statistics', '../../../stats/00_bowling.htm', '', 22, 0, 0);

menu[16] = new Array();
// This is across but not down...
menu[16][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[16][1] = new Item('Batting Statistics', '../../../stats/01_batting.htm', '', 22, 0, 0);
menu[16][2] = new Item('Bowling Statistics', '../../../stats/01_bowling.htm', '', 22, 0, 0);

menu[17] = new Array();
// This is across but not down...
menu[17][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[17][1] = new Item('Batting Statistics', '../../../stats/02_batting.htm', '', 22, 0, 0);
menu[17][2] = new Item('Bowling Statistics', '../../../stats/02_bowling.htm', '', 22, 0, 0);

menu[18] = new Array();
// This is across but not down...
menu[18][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[18][1] = new Item('Batting Statistics', '../../../stats/03_batting.htm', '', 22, 0, 0);
menu[18][2] = new Item('Bowling Statistics', '../../../stats/03_bowling.htm', '', 22, 0, 0);

menu[19] = new Array();
// This is across but not down...
menu[19][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[19][1] = new Item('Batting Statistics', '../../../stats/04_batting.htm', '', 22, 0, 0);
menu[19][2] = new Item('Bowling Statistics', '../../../stats/04_bowling.htm', '', 22, 0, 0);

menu[33] = new Array();
// This is across but not down...
menu[33][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[33][1] = new Item('Batting Statistics', '../../../stats/05_batting.htm', '', 22, 0, 0);
menu[33][2] = new Item('Bowling Statistics', '../../../stats/05_bowling.htm', '', 22, 0, 0);

menu[35] = new Array();
// This is across but not down...
menu[35][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[35][1] = new Item('Batting Statistics', '../../../stats/06_batting.htm', '', 22, 0, 0);
menu[35][2] = new Item('Bowling Statistics', '../../../stats/06_bowling.htm', '', 22, 0, 0);
menu[35][3] = new Item('Team of the Year', '../../../stats/06_team.htm', '', 22, 0, 0);

menu[36] = new Array();
// This is across but not down...
menu[36][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[36][1] = new Item('Batting Statistics', '../../../stats/07_batting.htm', '', 22, 0, 0);
menu[36][2] = new Item('Bowling Statistics', '../../../stats/07_bowling.htm', '', 22, 0, 0);
menu[36][3] = new Item('Team of the Year', '../../../stats/07_team.htm', '', 22, 0, 0);

menu[39] = new Array();
// This is across but not down...
menu[39][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[39][1] = new Item('Batting Statistics', '../../../stats/08_batting.htm', '', 22, 0, 0);
menu[39][2] = new Item('Bowling Statistics', '../../../stats/08_bowling.htm', '', 22, 0, 0);
menu[39][3] = new Item('Team of the Year', '../../../stats/08_team.htm', '', 22, 0, 0);

menu[40] = new Array();
// This is across but not down...
menu[40][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[40][1] = new Item('Batting Statistics', '../../../stats/09_batting.htm', '', 22, 0, 0);
menu[40][2] = new Item('Bowling Statistics', '../../../stats/09_bowling.htm', '', 22, 0, 0);
menu[40][3] = new Item('Team of the Year', '../../../stats/09_team.htm', '', 22, 0, 0);

menu[41] = new Array();
// This is across but not down...
menu[41][0] = new Menu(true, '>', 94, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[41][1] = new Item('Batting Statistics', '../../../stats/10_batting.htm', '', 22, 0, 0);
menu[41][2] = new Item('Bowling Statistics', '../../../stats/10_bowling.htm', '', 22, 0, 0);
//menu[40][3] = new Item('Team of the Year', '../../../stats/10_team.htm', '', 22, 0, 0);

menu[20] = new Array();
// This is across but not down...
menu[20][0] = new Menu(true, '>', 139, 0, 120, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[20][1] = new Item('1st Grade Batting', '../../../stats/1st_batting.htm', '', 22, 0, 0);
menu[20][2] = new Item('1st Grade Bowling', '../../../stats/1st_bowling.htm', '', 22, 0, 0);
menu[20][3] = new Item('2nd Grade Batting', '../../../stats/2nd_batting.htm', '', 22, 0, 0);
menu[20][4] = new Item('2nd Grade Bowling', '../../../stats/2nd_bowling.htm', '', 22, 0, 0);
menu[20][5] = new Item('3rd Grade Batting', '../../../stats/3rd_batting.htm', '', 22, 0, 0);
menu[20][6] = new Item('3rd Grade Bowling', '../../../stats/3rd_bowling.htm', '', 22, 0, 0);
menu[20][7] = new Item('4th Grade Batting', '../../../stats/4th_batting.htm', '', 22, 0, 0);
menu[20][8] = new Item('4th Grade Bowling', '../../../stats/4th_bowling.htm', '', 22, 0, 0);
menu[20][9] = new Item('5th Grade Batting', '../../../stats/5th_batting.htm', '', 22, 0, 0);
menu[20][10] = new Item('5th Grade Bowling', '../../../stats/5th_bowling.htm', '', 22, 0, 0);
menu[20][11] = new Item('6th Grade Batting', '../../../stats/6th_batting.htm', '', 22, 0, 0);
menu[20][12] = new Item('6th Grade Bowling', '../../../stats/6th_bowling.htm', '', 22, 0, 0);

menu[21] = new Array();
// This is across but not down...
menu[21][0] = new Menu(true, '>', 139, 0, 115, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[21][1] = new Item('Milestones', '../../../stats/milestones.htm', '', 22, 0, 0);
menu[21][2] = new Item('Hall of Fame', '../../../stats/hall_of_fame.htm', '', 22, 0, 0);
menu[21][3] = new Item('Club Team', '../../../stats/club_team.htm', '', 22, 0, 0);
menu[21][4] = new Item('Valhalla - Batting', '../../../stats/career_batting.htm', '', 22, 0, 0);
menu[21][5] = new Item('Valhalla - Bowling', '../../../stats/career_bowling.htm', '', 22, 0, 0);
menu[21][6] = new Item('Committee', '../../../stats/committee_history.htm', '', 22, 0, 0);

menu[22] = new Array();
// This is across but not down...
menu[22][0] = new Menu(true, '>', 139, 0, 129, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[22][1] = new Item('Club', '', '', defLength, 0, 23);
menu[22][2] = new Item('Finals Performances', '../../../stats/performance.htm', '', 22, 0, 0);
menu[22][3] = new Item('1st Grade', '../../../photos/1stgrade.htm', '', 22, 0, 24);
menu[22][4] = new Item('2nd Grade', '../../../photos/2ndgrade.htm', '', 22, 0, 25);
menu[22][5] = new Item('3rd Grade', '../../../photos/3rdgrade.htm', '', defLength, 0, 26);
menu[22][6] = new Item('4th Grade', '../../../photos/4thgrade.htm', '', defLength, 0, 27);
menu[22][7] = new Item('5th Grade', '../../../photos/5thgrade.htm', '', defLength, 0, 28);
menu[22][8] = new Item('6th Grade', '../../../photos/6thgrade.htm', '', defLength, 0, 29);

menu[23] = new Array();
// This is across but not down...
menu[23][0] = new Menu(true, '>', 128, 0, 108, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[23][1] = new Item('Partnerships', '../../../stats/club_partnerships.htm', '', 22, 0, 0);
menu[23][2] = new Item('Batting Records', '../../../stats/club_bat.htm', '', 22, 0, 0);
menu[23][3] = new Item('Bowling Records', '../../../stats/club_bowl.htm', '', 22, 0, 0);
menu[23][4] = new Item('Other Records', '../../../stats/club_other.htm', '', 22, 0, 0);
menu[23][5] = new Item('Leaders', '../../../stats/club_leaders.htm', '', 22, 0, 0);

menu[24] = new Array();
// This is across but not down...
menu[24][0] = new Menu(true, '>', 128, 0, 108, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[24][1] = new Item('Partnerships', '../../../stats/1st_partnerships.htm', '', 22, 0, 0);
menu[24][2] = new Item('Batting Records', '../../../stats/1st_team_bat.htm', '', 22, 0, 0);
menu[24][3] = new Item('Bowling Records', '../../../stats/1st_team_bowl.htm', '', 22, 0, 0);
menu[24][4] = new Item('Other Records', '../../../stats/1st_team_other.htm', '', 22, 0, 0);
menu[24][5] = new Item('Leaders', '../../../stats/1st_leaders.htm', '', 22, 0, 0);

menu[25] = new Array();
// This is across but not down...
menu[25][0] = new Menu(true, '>', 128, 0, 108, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[25][1] = new Item('Partnerships', '../../../stats/2nd_partnerships.htm', '', 22, 0, 0);
menu[25][2] = new Item('Batting Records', '../../../stats/2nd_team_bat.htm', '', 22, 0, 0);
menu[25][3] = new Item('Bowling Records', '../../../stats/2nd_team_bowl.htm', '', 22, 0, 0);
menu[25][4] = new Item('Other Records', '../../../stats/2nd_team_other.htm', '', 22, 0, 0);
menu[25][5] = new Item('Leaders', '../../../stats/2nd_leaders.htm', '', 22, 0, 0);

menu[26] = new Array();
// This is across but not down...
menu[26][0] = new Menu(true, '>', 128, 0, 108, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[26][1] = new Item('Partnerships', '../../../stats/3rd_partnerships.htm', '', 22, 0, 0);
menu[26][2] = new Item('Batting Records', '../../../stats/3rd_team_bat.htm', '', 22, 0, 0);
menu[26][3] = new Item('Bowling Records', '../../../stats/3rd_team_bowl.htm', '', 22, 0, 0);
menu[26][4] = new Item('Other Records', '../../../stats/3rd_team_other.htm', '', 22, 0, 0);
menu[26][5] = new Item('Leaders', '../../../stats/3rd_leaders.htm', '', 22, 0, 0);

menu[27] = new Array();
// This is across but not down...
menu[27][0] = new Menu(true, '>', 128, 0, 108, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[27][1] = new Item('Partnerships', '../../../stats/4th_partnerships.htm', '', 22, 0, 0);
menu[27][2] = new Item('Batting Records', '../../../stats/4th_team_bat.htm', '', 22, 0, 0);
menu[27][3] = new Item('Bowling Records', '../../../stats/4th_team_bowl.htm', '', 22, 0, 0);
menu[27][4] = new Item('Other Records', '../../../stats/4th_team_other.htm', '', 22, 0, 0);
menu[27][5] = new Item('Leaders', '../../../stats/4th_leaders.htm', '', 22, 0, 0);

menu[28] = new Array();
// This is across but not down...
menu[28][0] = new Menu(true, '>', 128, 0, 108, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[28][1] = new Item('Partnerships', '../../../stats/5th_partnerships.htm', '', 22, 0, 0);
menu[28][2] = new Item('Batting Records', '../../../stats/5th_team_bat.htm', '', 22, 0, 0);
menu[28][3] = new Item('Bowling Records', '../../../stats/5th_team_bowl.htm', '', 22, 0, 0);
menu[28][4] = new Item('Other Records', '../../../stats/5th_team_other.htm', '', 22, 0, 0);
menu[28][5] = new Item('Leaders', '../../../stats/5th_leaders.htm', '', 22, 0, 0);

menu[29] = new Array();
// This is across but not down...
menu[29][0] = new Menu(true, '>', 128, 0, 108, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[29][1] = new Item('Partnerships', '../../../stats/6th_partnerships.htm', '', 22, 0, 0);
menu[29][2] = new Item('Batting Records', '../../../stats/6th_team_bat.htm', '', 22, 0, 0);
menu[29][3] = new Item('Bowling Records', '../../../stats/6th_team_bowl.htm', '', 22, 0, 0);
menu[29][4] = new Item('Other Records', '../../../stats/6th_team_other.htm', '', 22, 0, 0);
menu[29][5] = new Item('Leaders', '../../../stats/6th_leaders.htm', '', 22, 0, 0);

menu[30] = new Array();
// This is across but not down...
menu[30][0] = new Menu(true, '>', 139, 0, 80, '#1A5C9F', '#004891', 'crazyBorder', 'crazyText');
menu[30][1] = new Item('Perpetual', '../../../stats/perpetual_trophies.htm', '', 22, 0, 0);
menu[30][2] = new Item('1st Grade', '../../../stats/1st_trophies.htm', '', 22, 0, 0);
menu[30][3] = new Item('2nd Grade', '../../../stats/2nd_trophies.htm', '', 22, 0, 0);
menu[30][4] = new Item('3rd Grade', '../../../stats/3rd_trophies.htm', '', 22, 0, 0);
menu[30][5] = new Item('4th Grade', '../../../stats/4th_trophies.htm', '', 22, 0, 0);
menu[30][6] = new Item('5th Grade', '../../../stats/5th_trophies.htm', '', 22, 0, 0);
menu[30][7] = new Item('6th Grade', '../../../stats/6th_trophies.htm', '', 22, 0, 0);
menu[30][8] = new Item('Association', '../../../stats/assocn_trophies.htm', '', 22, 0, 0);

menu[31] = new Array();
menu[31][0] = new Menu(true, '<', -10, 16, 125, defOver, defBack, 'itemBorder', 'itemText');
menu[31][1] = new Item('Player Profiles', '../../../humour/player_profiles.htm', '', defLength, 0, 0);
menu[31][2] = new Item('Uncovered Wicket', '../../../humour/uncovered.htm', '', defLength, 0, 0);
menu[31][3] = new Item('Poll Results', '../../../humour/poll_results.htm', '', defLength, 0, 0);
menu[31][4] = new Item('Stick Cricket', '../../../humour/cricket_game.htm', '', defLength, 0, 0);
menu[31][5] = new Item('Vikings Law', '../../../humour/viking_law.htm', '', defLength, 0, 0);

menu[32] = new Array();
menu[32][0] = new Menu(true, '<', -10, 16, 130, defOver, defBack, 'itemBorder', 'itemText');
menu[32][1] = new Item('1st Grade', '../../../photos/1stgrade.htm', '', defLength, 0, 0);
menu[32][2] = new Item('2nd Grade', '../../../photos/2ndgrade.htm', '', defLength, 0, 0);
menu[32][3] = new Item('3rd Grade', '../../../photos/3rdgrade.htm', '', defLength, 0, 0);
menu[32][4] = new Item('4th Grade', '../../../photos/4thgrade.htm', '', defLength, 0, 0);
menu[32][5] = new Item('5th Grade', '../../../photos/5thgrade.htm', '', defLength, 0, 0);
menu[32][6] = new Item('6th Grade', '../../../photos/6thgrade.htm', '', defLength, 0, 0);
menu[32][7] = new Item('Cricket Shots', '../../../photos/cricket_shots.htm', '', defLength, 0, 0);
menu[32][8] = new Item('Just Not Cricket', '../../../photos/just_not_cricket.htm', '', defLength, 0, 0);
menu[32][9] = new Item('Not Just Cricket', '../../../photos/not_just_cricket.htm', '', defLength, 0, 0);
menu[32][10] = new Item('Vikings Victories', '../../../photos/vikings_victories.htm', '', defLength, 0, 0);
menu[32][11] = new Item('Smocky', '../../../photos/smocky.htm', '', defLength, 0, 0);
menu[32][12] = new Item('The Tour 2003/04', '../../../photos/the_tour_2004.htm', '', defLength, 0, 0);
menu[32][13] = new Item('Grand Final Night 2005', '../../../photos/grand_final_night_2005.htm', '', defLength, 0, 0);
menu[32][14] = new Item('Badgers Wedding', '../../../photos/badgers_wedding.htm', '', defLength, 0, 0);

menu[34] = new Array();
menu[34][0] = new Menu(true, '>', 89, 0, 80, defOver, defBack, 'itemBorder', 'itemText');
menu[34][1] = new Item('Round 1', '../../../reports/season2006/round_01.htm', '', defLength, 0, 0);
menu[34][2] = new Item('Round 2', '../../../reports/season2006/round_2.htm', '', defLength, 0, 0);
menu[34][3] = new Item('Round 3', '../../../reports/season2006/round_3.htm', '', defLength, 0, 0);
menu[34][4] = new Item('Round 4', '../../../reports/season2006/round_4.htm', '', defLength, 0, 0);
menu[34][5] = new Item('Round 5', '../../../reports/season2006/round_5.htm', '', defLength, 0, 0);
menu[34][6] = new Item('Round 6', '../../../reports/season2006/round_6.htm', '', defLength, 0, 0);
menu[34][7] = new Item('Round 7', '../../../reports/season2006/round_7.htm', '', defLength, 0, 0);
menu[34][8] = new Item('Round 8', '../../../reports/season2006/round_8.htm', '', defLength, 0, 0);
menu[34][9] = new Item('Round 9', '../../../reports/season2006/round_9.htm', '', defLength, 0, 0);
menu[34][10] = new Item('Round 10', '../../../reports/season2006/round_10.htm', '', defLength, 0, 0);
menu[34][11] = new Item('Round 11', '../../../reports/season2006/round_11.htm', '', defLength, 0, 0);
menu[34][12] = new Item('Round 12', '../../../reports/season2006/round_12.htm', '', defLength, 0, 0);
menu[34][13] = new Item('Round 13', '../../../reports/season2006/round_13.htm', '', defLength, 0, 0);
menu[34][14] = new Item('Round 14', '../../../reports/season2006/round_14.htm', '', defLength, 0, 0);
menu[34][15] = new Item('Round 15', '../../../reports/season2006/round_15.htm', '', defLength, 0, 0);
menu[34][16] = new Item('Semi Finals', '../../../reports/season2006/round_semis.htm', '', defLength, 0, 0);
menu[34][17] = new Item('Grand Final', '../../../reports/season2006/round_the_finals.htm', '', defLength, 0, 0);

// *** OPTIONAL CODE FROM HERE DOWN ***
// These two lines handle the window resize bug in NS4. See <body onResize="...">.
// I recommend you leave this here as otherwise when you resize NS4's width menus are hidden.
var popOldWidth = window.innerWidth;
nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()');

// This is a quick snippet that captures all clicks on the document and hides the menus
// every time you click. Use if you want.
if (isNS4) document.captureEvents(Event.CLICK);
document.onclick = clickHandle;

function clickHandle(evt)
{
 if (isNS4) document.routeEvent(evt);
 hideAllBut(0);
}

//  End -->