$(document).ready(function(){
	var es;
	$('#menu a,#fmenu2 a,#showcart,#nmonto').mouseover(function(){
		es = $(this).text();
		$(this).text($(this).attr('en'));
	}).mouseout(function(){
		$(this).text(es);
	});
});