$(function(){
  $('.divhide')
	.mouseover(function(event){
    $(this).addClass("divshow")
	});

	$('.divhide').mouseout(function(event){
    $(this).removeClass("divshow")
  });
});
$(function(){
  $('.lang_choose')
	.mouseover(function(event){
    $(this).addClass("divshow")
	});

	$('.lang_choose').mouseout(function(event){
    $(this).removeClass("divshow")
  });
});