$(document).ready(function(){
	$('#lmEN a').hover(
		function(){
			$(this).parent().css({background: '#FFF'});
			$('#textEN').show();
		},
		function(){
			$(this).parent().css({background: 'transparent'});
			$('#textEN').hide();
		}
	);
	$('#lmES a').hover(
		function(){
			$(this).parent().css({background: '#FFF'});
			$('#textES').show();
		},
		function(){
			$(this).parent().css({background: 'transparent'});
			$('#textES').hide();
		}
	);
});