<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function (){

	$('.horizontalScrollBox').manualHorizontalScroll({
		list: '.horizontalScrollList',//å¤–å±‚å®¹å™¨
		child: 'li',//å­é¡¹
		leftBar: '.leftBar',//è§¦å‘å·¦ä¾§æ»šåŠ¨çš„æŒ‰é’®
		rightBar: '.rightBar',//è§¦å‘å³ä¾§æ»šåŠ¨çš„æŒ‰é’®
		count: 2,//æ»šåŠ¨ä¸ªæ•°
		speed: 500//æ»šåŠ¨é€Ÿåº¦
	});
	
	//ç•™è¨€
	//new LiuYanObj('#msgBoard').init();

	//ç•™è¨€æ»šåŠ¨
	$("#scrollDiv").Scroll({line:1,speed:500,timer:3000});
	
	$('.zs-xmcont ul li').hover(function(){
		$('.zs-xmcont ul li').removeClass('current')
		$(this).addClass('current');
	});

	$(".msg-online-list").Scroll({line:1,speed:500,timer:3000});

    /*å¯¼èˆªäºŒçº§èœå•
     */
    $('#new_list li').bind({
        'mouseenter':function(){
            $(this).find('div').css('display','block');
            $(this).find('a:eq(0)').css('color','#832F00');
            $(this).css({
                'background':'#fff'
            });
        },
        'mouseleave':function(){
            $(this).find('div').css('display','none');
            $(this).find('a:eq(0)').css('color','#fff');
            $(this).css({
                'background':''
            });
        }

    });
});</pre></body></html>