		var scroll_handler2 = 0;
		var scroll_dir2 = 0;
        var scroll_2up2 = function(){ if(!scroll_handler2) { scroll_dir2=-25; scroll_handler2 = window.setInterval(scroll_step2,60); } }
        var scroll_2down2 = function(){ if(!scroll_handler2) { scroll_dir2=25; scroll_handler2 = window.setInterval(scroll_step2,60); } }
        var scroll_stop2  = function(){ if(scroll_handler2) { window.clearInterval(scroll_handler2); scroll_handler2 = 0; } }
        var scroll_step2  = function() {
            if (!scroll_handler2) return;
            var avail_height2 = jQuery("#scroll2")[0].scrollHeight;
            var child_height2 = jQuery("#scroll2 .scroll_content2")[0].scrollHeight;
            var d2 = jQuery("#scroll2 .scroll_content2");
            var offset2 = parseInt( d2.css("margin-top") );
            if (
		(scroll_dir2 < 0 && offset2 < 0) ||
		(scroll_dir2 > 0 && child_height2 + offset2 + 24 > avail_height2)
	       ) { d2.css({ marginTop: offset2 - scroll_dir2 }); } else scroll_stop2();
        }
        jQuery(function(){
            jQuery("#scroll2 .scroll_content2").css({marginTop:0});
            jQuery("#scroll_top2").mouseup(scroll_stop2).mouseout(scroll_stop2).mousedown(scroll_2up2);
            jQuery("#scroll_down2").mouseup(scroll_stop2).mouseout(scroll_stop2).mousedown(scroll_2down2);
        });
