$(document).ready(function() {
	$("#lang").hover(function() {
		$('.popup', this).show();
	}, function() {
		$('.popup', this).hide();
	});

});
