function getModulo(){
	
	
	var text = $('modulo_mare');
	
	var req = new Request.HTML({
		url: 'http://circuitodellasalute.local/modulo/mare',		// l'url da contattare
		update: text,			// l'elemento che verra' aggiornato al completamento della richiesta
		evalScripts: false,		// gli script contenuti nel responso non verranno azionati
		onRequest: function() {
			text.set('html', 'Caricamento dei Widget...');
		},
		onComplete: function(tree, elements, html, js) {
			text.set('html', html);
				var myAccordion = new Accordion($('modulo_sx'), 'h6', 'div.element', {
					opacity: false,
					onActive: function(toggler, element){
						toggler.setStyle('color', '#fff');
					},
					onBackground: function(toggler, element){
						toggler.setStyle('color', '#fff');
					}
				});
				
				text.fade(1);
			},
			onFailure: function() {
				text.set('html', 'The Request has failed...');
			}
	});
	
	// azioniamo la richiesta passando qualche parametro
	req.get();
	
}

function getAgenda(indirizzo){

	var text = $('agenda');

	var req = new Request.HTML({
		url: indirizzo,		// l'url da contattare
		update: text,			// l'elemento che verra' aggiornato al completamento della richiesta
		evalScripts: false,		// gli script contenuti nel responso non verranno azionati
		onRequest: function() {
			text.set('html', 'Caricamento caldnario...');
		},
		onComplete: function(tree, elements, html, js) {
			text.set('html', html);
			},
			onFailure: function() {
				text.set('html', 'The Request has failed...');
			}
	});

	// azioniamo la richiesta passando qualche parametro
	req.get();

}