var viafabbri = {
	testi: function() {
		$$('#testi').each(function(el){
			new Accordion(el.getElements('p.continue1 a'), el.getElements('div.longtext1'), {show: -1, fps: 50, onActive: function(){ el.getElements('p.continue1 a').addClass('close'); el.getElements('p.continue1 a').setText('Chiudi'); }, onBackground: function(){ el.getElements('p.continue1 a').removeClass('close'); el.getElements('p.continue1 a').setText('Continua...'); }, alwaysHide: true});
		});
		$$('#testi').each(function(el){
			new Accordion(el.getElements('p.continue2 a'), el.getElements('div.longtext2'), {show: -1, fps: 50, onActive: function(){ el.getElements('p.continue2 a').addClass('close'); el.getElements('p.continue2 a').setText('Chiudi'); }, onBackground: function(){ el.getElements('p.continue2 a').removeClass('close'); el.getElements('p.continue2 a').setText('Continua...'); }, alwaysHide: true});
		});
	},

	init: function() {
		this.testi();
		new SmoothScroll();
	}
};

window.onDomReady(viafabbri.init.bind(viafabbri));