window.addEvent('domready', function() {
	var scroll2 = new Scroller('mousemove', {area: 30, velocity: 1});

	$('mousemove').addEvent('mouseover', scroll2.start.bind(scroll2));
	$('mousemove').addEvent('mouseout', scroll2.stop.bind(scroll2));
});
