 // 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 = [

	['Situacion', 'javascript:llamarasincrono(\'COMO_LLEGAR_ A_MANDAYONA.html\', \'contenidos\')'],

	['Lugar / Gentes', 'javascript:llamarasincrono(\'EL_LUGAR_Y_SUS_GENTES.html\', \'contenidos\')'],

	['Historia', 'javascript:llamarasincrono(\'HISTORIA.html\', \'contenidos\')'],

	['Patrimonio', 'javascript:llamarasincrono(\'PATRIMONIO.html\', \'contenidos\')'],

	['Rio Dulce', null, null,
		['Parque Natural', "javascript:llamarasincrono('PARQUE_NATURAL_RIO_DULCE.htm', 'contenidos');"],
		['Rio Dulce', "javascript:llamarasincrono('RIO_DULCE.html', 'contenidos');"],
		['Centro Interpretacion', 'http://www.mandayona.net/CENTRO_INTERPRETACION_MANDAYONA/index.html', {'tw' : '_blank'}],
		['Fotos Río Dulce', 'http://www.mandayona.net/FOTOS_RIO_DULCE/index.html', {'tw' : '_blank'}],

	],	

	['Asoc.Culturales', null, null, 
		['Teatro "Rio Dulce"', "javascript:llamarasincrono('Grupo_Teatral_Rio_Dulce.html', 'contenidos');"],
		['Asociación Mujeres', "javascript:llamarasincrono('Asociacion_Mujeres2.html', 'contenidos');"],
		['Semana Cultural', 'http://www.mandayona.net/SEMANA_CULTURAL/index.html', {'tw' : '_blank'}],

	],	
	

	['Fiestas', null, null,
		['Fiestas y Penas', "javascript:llamarasincrono('FIESTAS_DE_MANDAYONA.html', 'contenidos');"],
//		['test', "javascript:llamarasincrono('fotos_pena_2011.html', 'contenidos');"],
		['2011', 'http://www.mandayona.net/FOTOS_FIESTAS/2011/index.html', {'tw' : '_blank'}],
		['2010', 'http://www.mandayona.net/FOTOS_FIESTAS/2010/index.html', {'tw' : '_blank'}],
		['2009', 'http://www.mandayona.net/FOTOS_FIESTAS/2009/index.html', {'tw' : '_blank'}],
		['Camisetas Peñas', 'http://www.mandayona.net/FOTOS_FIESTAS/CAMISETAS_PENAS/index.html', {'tw' : '_blank'}],

	],

	['Fotos', null, null,
		['Mandayona', 'http://www.mandayona.net/FOTOS_MANDAYONA/index.html', {'tw' : '_blank'}],
		['Río Dulce', 'http://www.mandayona.net/FOTOS_RIO_DULCE/index.html', {'tw' : '_blank'}],
		['Semana Santa', 'http://www.mandayona.net/SEMANA_SANTA/index.html', {'tw' : '_blank'}],
		['Noche Vieja 07/08', 'http://www.mandayona.net/NOCHEVIEJA_2007_2008/index.html', {'tw' : '_blank'}],
		['Noche Vieja 08/09', 'http://www.mandayona.net/NOCHEBIEJA 2008-2009/index.html', {'tw' : '_blank'}],
	]	
];



