window.addEvent('domready', function() {FadeScritta = new Fx.Tween($('scrittaBanner'), {property: 'opacity', duration: 3000, fps: 100}); var ElementoSinistra = new Fx.Tween($('leftElement'));var ElementoDestra = new Fx.Tween($('rightElement'));ElementoSinistra.set('opacity',0.6);ElementoDestra.set('opacity',0.6);$('scrittaBanner').xOpacity = 0;$('scrittaBanner').style.display = "block";FadeScritta.start(0,1).chain(function(){this.start(1,0.9)});		var l_el = $('leftElement');			// Long version    $('tweenOpacityLeft').addEvent('mouseover', function(e) {		// You often will need to stop propagation of the event		e.stop();		l_el.fade(1);	}); 		$('tweenOpacityLeft').addEvent('mouseout', function(e) {		e.stop();		l_el.fade(0.6);	});		var r_el = $('rightElement');				// Long version    $('tweenOpacityRight').addEvent('mouseover', function(e) {		// You often will need to stop propagation of the event		e.stop();		r_el.fade(1);	}); 		$('tweenOpacityRight').addEvent('mouseout', function(e) {		e.stop();		r_el.fade(0.6);	});		});
