$(document).ready(function(){
$('#main_content_container p a').each(function() {
      $(this).attr("href", function(index, old) {
            return old.replace("http://mce_host/", "mailto:");
      });
});
$('#main_content_container h2 a').each(function() {
      $(this).attr("href", function(index, old) {
            return old.replace("http://mce_host/", "mailto:");
      });
});
$('#main_content_container h3 a').each(function() {
      $(this).attr("href", function(index, old) {
            return old.replace("http://mce_host/", "mailto:");
      });
});
});
