window.addEvent('domready', function(){
		var scroll2 = new Scroller('mousemove', {area: 450, velocity: .009, wait: false});
		
	
		$('mousemove').addEvent('mousedown', function() {
			scroll2.start();
		});
		$('mousemove').addEvent('mouseup', function() {
			scroll2.stop();
		});
		scroll2.start();
	
	}); 