function scroll_content_animate() {
	$$('.scrollieScrollWidget').each(function(scroll_widget) {
		if (scroll_widget.scroll_status == 'on') {
			// figure out how much the scroll_content div is scrolled, then add the incremental value, based on direction.
			var scroll_area = scroll_widget.down('.scrollieScrollArea');
			var delta = (scroll_widget.scroll_direction == 'up') ? -1 : 1;
			scroll_area.scrollTop += delta;
		}
	});
}

Event.observe(window,'load',function(){
	$$('.scrollieArrow').each(function(arrow) {
		arrow.observe('mouseover', function() {
			var scroll_widget = this.up('.scrollieScrollWidget');
			scroll_widget.scroll_direction = (this.hasClassName('arrowUp')) ? 'up' : 'down';
			scroll_widget.scroll_status = 'on';
		});
		arrow.observe('mouseout', function() {
			this.up('.scrollieScrollWidget').scroll_status = 'off';
		});
	});
	window.setInterval(scroll_content_animate, 5);
	}
,false);