solunski.d,
.filter_other1{
background-color: #0000FF;
}
.test.filter_other1{
background-color: #228B22;
}
$(function(){
var $ul = $('.filter_1'),
$button = $('.filter_other1'),
n = true;
$ul.scroll(function () {
if (this.scrollHeight - this.scrollTop === this.clientHeight || !this.scrollTop) {
n = !n;$button.val( n ? 'вниз':'вверх');
$button.toggleClass('test', !n);
}
});
$button.click(function () {
$ul.stop().animate({
scrollTop: n ? '+=100' : '-=100'
}, 1000);
});
});