// Initialise the effects
		var abruzzo, emilia, lombardia, marche, piemonte, sicilia, toscana, veneto;
		
		window.onload = function() {
			abruzzo = new fx.Combo('abruzzo', {height: true, opacity: true, duration: 500});
			emilia = new fx.Combo('emilia', {height: true, opacity: true, duration: 500});
			lombardia = new fx.Combo('lombardia', {height: true, opacity: true, duration: 500});
			marche = new fx.Combo('marche', {height: true, opacity: true, duration: 500});
			piemonte = new fx.Combo('piemonte', {height: true, opacity: true, duration: 500});
			sicilia = new fx.Combo('sicilia', {height: true, opacity: true, duration: 500});
			toscana = new fx.Combo('toscana', {height: true, opacity: true, duration: 500});
			veneto = new fx.Combo('veneto', {height: true, opacity: true, duration: 500});
			tinyScrolling.init();
						
			// Hide them to begin with
			abruzzo.hide();
			emilia.hide();
			lombardia.hide();
			marche.hide();
			piemonte.hide();
			sicilia.hide();
			toscana.hide();
			veneto.hide();
}
