// 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 = [
	
	['Le Team  ', null, null,
		['Jean-Charles', 'pagejc.html'],
		['Lionel', 'pagelionel.html'],
		['Romain', 'pagetut.html'],
		['Patrice', 'pageziket.html'],
		['Sébastien', 'pagegrille.html'],
		['Olivier R', 'pageolivr.html'],
		['Grégory', 'pagegreg.html'],
		['Olivier G', 'pageolivg.html'],
		['Cédric', 'pageced.html'],
		['Lucien', 'pagelulu.html'],
	],
	
	['Les Courses', null, null,
		['A venir...', 'pagecourse.php'],
		
	
	],
	
	['Les Photos ', null, null,
		['Cyclathlon 2009', 'pagecyclathlon09.php'],
		['Envolée nodique 2008', 'pageenvolee08.php'],
		['Envolée nordique 2009', 'pageenvolee09.php'],
		['Transju 2008', 'pagetransju08.php'],
		['Transju 2009', 'pagetransju09.php'],
		['Course Suisse 2009', 'pagecoursesuisse.php'],
		['Divers', 'pagedivers.php'],
	],
	
	['Le Shop Ski Ju', null, null,
		['T-shirts 09', 'pageshop.html'],
		['Petites Annonces', 'pageannonce.php'],
		
	],
	
	['Le Livre Or', null, null,
		
		['Consulter ', 'pagelivreor.php'],
		['Ecrire un message', 'rediger_livre.php'],	
		
	],
	
	['Plus de bonus', null, null,
		['Les liens', 'pagelien.html'],
		['News Letters ', 'http://www.skijurapide.com/news_letters_php/inscrip_desinscrip.php?action=inscrire'],
		['Bonus Vidéo ', 'pagebonus.html'],
		['Espace membre', 'pageconnection.php'],
	],
	
	['Contact', 'pagecontact.php']
	
];

