var menuDefn = new menuObj('', '', '', '');
var mstack = new Array(menuDefn);

mline(1, 'home', 'home', '', 'startpage.htm');
mline(1, 'about us', '', '');
	mline(2, 'contact us', 'how to contact us', '', 'contact.htm');
	mline(2, 'where we are', 'how to find us', '', 'findus.htm');
	mline(2, 'blog', 'blog', '', 	'http://wychwoodplayers.wordpress.com');
//	mline(2, 'what we do', 'information about us', '', 'aboutwp.htm');
mline(1, 'current season', 'plans for the season from September to June', '', '');
	mline(2, 'Nov 2009', 'Babes in the Wychwoods', '', '2009to10/BabesWychwoods.htm');
mline(1, 'past productions', 'past productions', '', '');
	mline(2, 'May 2009', 'Humble Boy', '', '2008to9/HumbleBoy.htm');
	mline(2, 'Mar 2009', 'Heroes', '', '2008to9/Heroes.htm');
	mline(2, 'Nov 2008', 'Sandcastles', '', '2008to9/Sandcastles.htm');
	mline(2, 'Mar 2008', 'Mixed Doubles', '', '2007to8/mixedDoubles.htm');
	mline(2, 'Nov 2007', 'Treasure Island', '', '2007to8/TreasIsland.htm');
	mline(2, 'May 2007', 'Extracts from Visiting Hour', '', '2006to7/supper07.htm');
	mline(2, 'Mar 2007', 'An Inspector Calls', '', '2006to7/Inspector.htm');
	mline(2, 'Nov 2006', 'Frankenstein', '', '2006to7/Frankenstein.htm');
	mline(2, 'Jun 2006', 'Last of the Red Hot Lovers', '', '2005to6/RHL.htm');
	mline(2, 'Mar 2006', 'Supper evening with two one-act plays', '', '2005to6/Supper06.htm');
	mline(2, 'Dec 2005', 'The Pied Piper', '', '2005to6/piedpiper.htm');
	mline(2, 'Oct 2005', 'Veronica&#39;s Room', '', '2005to6/Veronica.htm');
	mline(2, '2004/5', '2004 - 2005 season', '', 'history/2004to5.htm');
	mline(2, '2003/4', '2003 - 2004 season', '', 'history/2003to4.htm');
	mline(2, '2002/3', '2002 - 2003 season', '', 'history/2002to3.htm');
	mline(2, '2001/2', '2001 - 2002 season', '', 'history/2001to2.htm');
	mline(2, '2000/1', '2000 - 2001 season', '', 'history/2000to1.htm');
	mline(2, '1999/0', '1999 - 2000 season', '', 'history/1999to0.htm');
	mline(2, '1998/9', '1998 - 1999 season', '', 'history/1998to9.htm');
	mline(2, 'early Players', '', '', 'history/preplayers.htm');
mline(1, 'social events', '', '');
	mline(2, 'blog', 'blog', '', 	'http://wychwoodplayers.wordpress.com');

function mline(level, name, title, acronym, url) {
	var parent;
	if (level < mstack.length) {
		parent = mstack[level-1];
		mstack.length = level;
	}
	else {
		parent = mstack[mstack.length-1]
		if (level > mstack.length) {
			parent = parent.submenu[parent.submenu.length-1];
			mstack[mstack.length] = parent;
		}
	}
	parent.submenu[parent.submenu.length] = new menuObj(name, title, acronym, url);
}

function menuObj(name, title, acronym, url) {
	this.index = 0;
	this.name = name;
	this.title = title;
	this.acronym = acronym;
	this.url = url;
	this.submenu = new Array;
}
