$(function(){
	
	$('#lng_select').hover(
function(){
		$('#lng_select').animate({
			'width': '146px'
	});
	},
function(){
		$('#lng_select').animate({
			'width': '25px'
	});
	}

);

	
});
