window.addEvent('load', function() {

var scroll = new Fx.Scroll('scroller', {
	wait: false,
	duration: 350000,	
	offset: {'x': 0, 'y': 0},
	transition: Fx.Transitions.linear
});

	scroll.toBottom();



$('scroller').addEvent('mouseover', function(event) {
	event = new Event(event).stop();
	scroll.stop();
});

$('scroller').addEvent('mouseout', function(event) {
	event = new Event(event).stop();
	scroll.toBottom();
});
	
});


