$(document).ready(function(){
			$('.language_son_ul').hide(); //初始ul隐藏
			$('.language_select_box span').hover(function(){ //鼠标移动函数
					$(this).parent().find('ul.language_son_ul').slideDown();  //找到ul.son_ul显示
					$(this).parent().find('li').hover(function(){$(this).addClass('language_hover')},function(){$(this).removeClass('language_hover')}); //li的hover效果
					$(this).parent().hover(function(){},
										       function(){
											   $(this).parent().find("ul.language_son_ul").slideUp(); 
												}
											 );
			},function(){}
			);
}
);
