$(document).ready(function(){
	var col_es;
	$('.title,h1').mouseover(function(){
		col_es = $(this).text();
		$(this).text($(this).attr('en'));
	}).mouseout(function(){
		$(this).text(col_es);
	});
});
