window.addEvent('domready', function() {
	//var scroll1 = new Scroller('drag', {area: 100, velocity: 1});
	var scroll2 = new Scroller('mousemove', {area: 80, velocity: 0.5});
		
	$('mousemove').scrollTo(1000, 50)	
	// Mousemove
	$('mousemove').addEvent('mouseover', scroll2.start.bind(scroll2));
	$('mousemove').addEvent('mouseout', scroll2.stop.bind(scroll2));
});