$(function(){
  /*-------------------------------------------------------------------*/
  //$('#content').css('','');
  var txt = $('#content').html();
  var replObj = {'à':'a','å':'e','î':'o','ð':'p','ñ':'c','õ':'x','Ê':'K','Å':'E','Í':'H','Ì':'M','À':'A','Å':'E','Î':'O','Ð':'P','Ñ':'C','Õ':'X'};
  function artclrepl(x)
   {
    return replObj[x];
   }
  txt = txt.replace(/[àåîðñõÊÅÍÌÀÅÎÐÑÕ]/g, artclrepl);
  $('#content').html( txt );
  /*-------------------------------------------------------------------*/

});
