	$(document).ready(function() {

		$('#list_scroll_down').click(function(evt){
			evt.stopPropagation();
			var s = $('#list_scroller');
			var maxtop = (0-(s.height()-s.parent().height()))
			if(s.position().top>maxtop){
				var newtop = s.position().top - s.parent().height();
				if(newtop<maxtop){
					newtop=maxtop;
				}
				s.stop();
				s.animate({top:newtop+'px'});
			}
														
		});
		$('#list_scroll_up').click(function(evt){
			evt.stopPropagation();
			var s = $('#list_scroller');
			if(s.position().top<0){
				var newtop = s.position().top + s.parent().height();
				if(newtop>0){
					newtop=0;
				}
				s.stop();
				s.animate({top:newtop+'px'});
			}
		});
	});
