<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// JavaScript Document
/*å¯¼èˆªåˆ’è¿‡ä¸‹è¾¹æ¡†*/
$(function(){
	$('.nav_list li').hover(function(){
		$(this).addClass('te').siblings('li').removeClass('te');
		
	},function(){
	});
	
});</pre></body></html>