Gentilissimi!

Il seguente errore affligge il povero Internet Explorer 8.0:

Dettagli errore pagina Web

Agente utente: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)
Timestamp: Sat, 5 Dec 2009 00:25:38 UTC


Messaggio: Previsto identificatore, stringa o numero
Linea: 9
Carattere: 4
Codice: 0



codice:
window.addEvent('domready', function(){
 	var list = $$('.menu li a span');
 	list.each(function(element) {

	 		var fx = new Fx.Styles(element, {duration:700,
wait:false, transition: Fx.Transitions.Elastic.easeOut});
	 		element.addEvent('mouseenter', function(){
 			      fx.start({
 				'padding-left': 10,
 			});
 		});
	 		element.addEvent('mouseleave', function(){
 			fx.start({
 				'padding-left': 4,
 			});
 		});
 	});
 });
Con Firefox tutto funziona...

Grazie mille!