window.addEvent('domready', function(){
	$('attivita').addEvents({
		'mouseenter': function(){
			// Imposta l'altezza e il tween
			this.set('tween', {}).tween('height', '220px');
		},
		'mouseleave': function(){
			// Riporta il tween e i cambiamenti alla dimensione iniziale
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
	$('setaccio').addEvents({
		'mouseenter': function(){
			// Imposta l'altezza e il tween
			this.set('tween', {}).tween('height', '200px');
		},
		'mouseleave': function(){
			// Riporta il tween e i cambiamenti alla dimensione iniziale
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
	$('eventi').addEvents({
		'mouseenter': function(){
			// Imposta l'altezza e il tween
			this.set('tween', {}).tween('height', '135px');
		},
		'mouseleave': function(){
			// Riporta il tween e i cambiamenti alla dimensione iniziale
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
	$('contatti').addEvents({
		'mouseenter': function(){
			// Imposta l'altezza e il tween
			this.set('tween', {}).tween('height', '110px');
		},
		'mouseleave': function(){
			// Riporta il tween e i cambiamenti alla dimensione iniziale
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
	$('societa').addEvents({
		'mouseenter': function(){
			// Imposta l'altezza e il tween
			this.set('tween', {}).tween('height', '115px');
		},
		'mouseleave': function(){
			// Riporta il tween e i cambiamenti alla dimensione iniziale
			this.set('tween', {}).tween('height', '30px');
		}
	});
	
	$('moduli').addEvents({
		'mouseenter': function(){
			// Imposta l'altezza e il tween
			this.set('tween', {}).tween('height', '145px');
		},
		'mouseleave': function(){
			// Riporta il tween e i cambiamenti alla dimensione iniziale
			this.set('tween', {}).tween('height', '30px');
		}
	});
});