$(document).ready(function(){
	$("#arrows img.up").click(function(){
		autoscroll(-45);
	});

	$("#arrows img.down").click(function(){
		autoscroll(45);
	});

	function autoscroll(amt) {
		$('#scroller1').animate({
			scrollTop: $('#scroller1').scrollTop()+amt
		}, 400);
	}
});
