	
$(document).ready(function() {
	$('#lang').mouseover(function() {
		$(this).toggleClass("over");
	});
	$('#lang').mouseout(function() {
		$(this).toggleClass("over");
	});
});
