// 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 = [
    ['Home', 'index.html', null,],
	['About Us', null, null,
				['History', 'history.html'],
				['Committee', 'committee.html'],
				['Mission Statement', 'missionstatement.html'],
				['Sponsors', 'sponsors.html']
				 // there must be no comma after the last element
		// 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'
	],
	['Membership', null, null,
		// this is how item scope settings are defined
		['How to Join', 'join.html'],
		['Club Rules', 'rules.html'],
		['Fees', 'fees.html'],
		['Uniform', 'uniform.html']
	],
	['Club Members', null, null,
		['Calender', 'calender.html'],
		['Juniors...<span style="position:absolute;left:145px"><img src="img/lev0_arrow.png" /></span>', null,null,
		    ['Age Group Details', 'juniordetails.html'],
		    ['Results', 'jresults.html'],
		    ['Parent Involvement', 'parent.html'],
			['Rookie Programme', 'rookies.html'],
		],
		['Seniors...<span style="position:absolute;left:145px"><img src="img/lev0_arrow.png" /></span>', null,null,
		    ['Results', 'sresults.html'],
		    ['Surf Sport', 'surfsport.html'],
		    ['Coaching', 'coaching.html'],
		    ['Beach', 'beach.html']
		],
		['Life Guarding...<span style="position:absolute;left:145px"><img src="img/lev0_arrow.png" /></span>', null,null,
		    ['Roster/Patrol List', 'roster.html'],
		    ['Club Captain', 'clubcaptain.html'],
		    ['Chief Instructor', 'chiefinstructor.html']
		],
		['Gallery', 'gallery.html'],
		],
	['News', null, null,
	    ['Newsletter', 'newsletter.html'],
		['Classifieds', 'advertising.html'],
		['Archive', 'newsarchive.html']
	],
    ['Contact Us', 'contact.html', null,],	
];


