<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">var http_url = "https://www.soufair.com";

$(".new-right-slider .right-mouse").mouseover(function() {
    var num = $(this).index() + 1;
    $(this).find('.right-img').attr('src', http_url + '/storage/soufair/newPage/home/right_'+ num +'_red.png');
    if (num == 1 || num == 3) {
        $(this).find('div').removeClass('mouse-active');
    }
})
$(".new-right-slider .right-mouse").mouseout(function() {
    var num = $(this).index() + 1;
    $(this).find('.right-img').attr('src', http_url + '/storage/soufair/newPage/home/right_'+ num +'.png');
    if (num == 1 || num == 3) {
        $(this).find('div').addClass('mouse-active');
    }
})
$(function(){
	//é€‰é¡¹å¡åˆ‡æ¢
	$('.new-header-box-li').hover(function() {
        // é¼&nbsp;æ&nbsp;‡è¿›å…¥
        $('.new-header-ul').addClass('active');
        $(".new-header-box-li-right").addClass('hidden')
    }, function() {
        // é¼&nbsp;æ&nbsp;‡ç¦»å¼€
        $('.new-header-ul').removeClass('active');
        $(".new-header-box-li-right").removeClass('hidden')
    });
    $('.new-bottom-hot-tab .category ul li').mouseover(function(){
		indexC = $(this).index();
		$(this).addClass('active').siblings().removeClass('active');
		$('.new-bottom-hot-tab .new-cont').eq(indexC).addClass('active').siblings().removeClass('active');
	})
})</pre></body></html>