$(document).ready(function(){
	var cat_es;
	$('#auxcat').mouseover(function(){
		cat_es = $(this).text();
		$(this).text($(this).attr('en'));
	}).mouseout(function(){
		$(this).text(cat_es);
	});
});
