// 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 = [
	['Accueil', 'http://www.fsg-versoix.ch/public2/menu_bas.html', {'tw':'bas_gauche'}
	],
	['Société', null, null,
		['Historique', 'http://www.fsg-versoix.ch/public2/societe/Historique.html'],
		['Comité', 'http://www.fsg-versoix.ch/public2/societe/Comite.html'],
		['Boutique', 'http://www.fsg-versoix.ch/public2/societe/Boutique.html'],
	],
	['Groupes', null, null,
		// this is how item scope settings are defined
		['Athletisme', 'http://www.fsg-versoix.ch/public2/groupe/athletisme/athletisme.html', {'tw':'bas_gauche', 'tt':'Athletisme', 'sb':'Test Status Bar Message'}],
		['Agrès', null,null,
			['Agres cat. 1', 'http://www.fsg-versoix.ch/public2/groupe/agres/agres_1/agres_1.html'],
			['Agres cat. 2-3', 'http://www.fsg-versoix.ch/public2/groupe/agres/agres_23/agres_23.html'],
			['Agres cat. 4', 'http://www.fsg-versoix.ch/public2/groupe/agres/agres_4/agres_4.html'],
			['Agres cat. 5-6-7', 'http://www.fsg-versoix.ch/public2/groupe/agres/agres_567/agres_567.html'],
			['calendrier concours', 'http://www.fsg-versoix.ch/public2/groupe/agres/calendrier/calendrier.html'],
                ],
		['Artistique', 'http://www.fsg-versoix.ch/public2/groupe/artistique/artistique.html'],
		['Jeunes Gymnastes', null,null,
			['Mixtes', 'http://www.fsg-versoix.ch/public2/groupe/jeunes_gym/jeun_gym_mixte.html'],
			['Filles', 'http://www.fsg-versoix.ch/public2/groupe/jeunes_gym/jeun_gym_fille.html'],
			['Garçons', 'http://www.fsg-versoix.ch/public2/groupe/jeunes_gym/jeun_gym_garcon.html'],
		],
		['Jeunes 10-14 ans', null,null,
			['Mixtes', 'http://www.fsg-versoix.ch/public2/groupe/jeunes_gym/jeun_gym_mixte.html'],],
		['Gym Enfantine', 'http://www.fsg-versoix.ch/public2/groupe/gym_enf/gym_enf_me.html'],
		['Polysport Adultes', 'http://www.fsg-versoix.ch/public2/groupe/poly_adultes/poly_adultes.html'],
		['Parents-Enfants', 'http://www.fsg-versoix.ch/public2/groupe/parents_enfants/parents_enfants.html'],
		['Actifs mixtes', 'http://www.fsg-versoix.ch/public2/groupe/actifs_mixtes/actifs.html'],
		['Gym Hommes', 'http://www.fsg-versoix.ch/public2/groupe/gym_hommes/gym_hommes.html'],
                ['Volley-Ball', null,null,
			['Masculin', 'http://www.fsg-versoix.ch/public2/groupe/volley/masculin.html'],
			['Senior', 'http://www.fsg-versoix.ch/public2/groupe/volley/senior.html'],
		],
         ],
                
	['Photos', null,null,
			['2008', 'http://www.fsg-versoix.ch/public2/photos/2008/photos.html'],
			['2009', 'http://www.fsg-versoix.ch/public2/photos/2009/photos.html'],
			['2010', 'http://www.fsg-versoix.ch/public2/photos/2010/photos.html'],
			['2011', 'http://www.fsg-versoix.ch/public2/photos/2011/photos.html'],
                ],
	['Résultats', null,null,
			['2010', 'http://www.fsg-versoix.ch/public2/resultats/2010/resultats.html'],
			['2011', 'http://www.fsg-versoix.ch/public2/resultats/2011/resultats.html'],
		],
        ['MaFédé', 'http://www.fsg-versoix.ch/public2/mafede/mafede.html'],
	['Derby Des Bois', 'http://www.derbydesbois.ch',{'tw':'_blank'}],
	['Contact', 'http://www.fsg-versoix.ch/public2/Contact.html']


];


