// items structure

// each item is the array of one or more properties:

// [text, link, settings, subitems ...]

// use the builder to export errors free structure if you experience problems with the syntax



var MENU_ITEMS = [

	['The Club', 'home2.html', {'tw':'main1'},

		// this is how custom javascript code can be called from the item

		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'

		['Club Activity', 'newsletter.html', {'tw':'main1'}],

		['Outdoor', 'outdoor.html', {'tw':'main1'}],

		['Indoor', 'indoor.html', {'tw':'main1'}],

		['Teams', 'teams.html', {'tw':'main1'}],

		['Visitors', 'visitors.html', {'tw':'main1'}],

		//	['Court hire', 'hiring.html', {'tw':'main1'}],

			['Junior', 'juniorinformation.html', {'tw':'main1'}],

			

	],

	['Membership', null, null,

		// this is how item scope settings are defined

		['Fees &amp; Playing Times 2010', 'membership.html', {'tw':'main1'}],

		// this is how multiple item scope settings are defined

		['General rules', 'rules.html', {'tw':'main1'}],

		['How to join', 'join.html', {'tw':'main1'}],

	

		

		

	],

	['Coaching', null, null,

	['Coaching Team', 'coachingwalton.html', {'tw':'main1'}],
	
	['Head Coach', 'headcoach.html', {'tw':'main1'}],

		['Adult coaching 2010', 'coachingadult.html', {'tw':'main1'}],

		['Junior coaching 2010', 'coachingjunior.html', {'tw':'main1'}],

		//['Junior Friday Nights', 'juniorfriday.html', {'tw':'main1'}],

		['Holiday courses 2010','holiday.html', {'tw':'main1'}],

		

	],

	['Contact', null, null,

		['Contact us', 'logincontact.html', {'tw':'main1'}],

		['Committee Members Area', 'login.html', {'tw':'main1'}],

		['Location', 'location.html',  {'tw':'main1'}],

		

	],

	['Gallery', 'gallery.html', {'tw':'main1'}

			

	],

];



