// 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'],
	['About Us', null, null,
		    ['Video', 'video.html'],
	            ['About Us', 'about.html'],
	],
	['Events', null, null,        
        ['Past Events', null, null,
	            ['Solstice Walk 2009', 'SolsticeWalk2009.html'],
	            ['Womens Mini-Marathon', 'WomensMiniMarathon2009.html'],
	            ['Ryans Fashion Show', 'RyansFashionShow2009.html'],
		    ['Christmas Swim 2008', 'ChristmasSwim2008.html'],
		    ['Toni and Guy Charity Event', 'ToniAndGuyMar2008.html'],
            ['Fashion Show', 'FashionShow2008.html'],
            ['AIB Better Ireland', 'AIBBetterIreland2008.html'],
        ],
	],
	['Information', null, null,
		['What is Down Syndrome?', 'http://www.downsyndrome.ie/what_is_down_syndrome/index.html'],
		['Down Syndrome Ireland', 'http://www.downsyndrome.ie'],
		['Language Tips', 'TipsForStimulatingLanguageInEverydayContexts.html'],
	],
	['Contact Us', 'contact.html'],
	['Donate', 'http://voicesforgalway.ticketsolve.com/products']
];


