ho il seguente codice ke funziona con IE ma non con firefox e google chrome sapete perchè?
<script type="text/javascript">
Event.observe (window, 'load', function(){
//new horizontalMarquee('example');
new verticalMarquee('example2');
});

la funzione che verticalMarquee è la seguente:

var newsMarquee = Class.create({

initialize: function(element,options) {
this.element = $(element);
this.innerDiv = this.element.down('div');
this.options = {
speed: 1,
control: true
};
Object.extend(this.options, options || {});

this.playScroll();
if (this.options.control) {
this.addObserver();
}
},