var $j = jQuery.noConflict();

$j(document).ready(function() {
  $j('.email').each(function(index) {
    var content = $j(this).text().replace(' AT ', '@').replace(' DOT ', '.');
    $j(this).replaceWith($j('<p  style="text-align: center; font-size: medium; font-family: Times New Roman,serif; font-weight:bold"><a href="mailto:' + content + '">' + content + '</a></p>')); 
  });
});


