$(function(){
  $('a').each(function(){
    var href = $(this).attr('href');
    if(href && href.match(/^https?:/)) {
        $(this).attr('rel','external').addClass('external');
        $(this).attr('target','_blank');
    }
    else if(href && href.match(/^mailto:/)) {
        $(this).addClass('nomarker');
    }
  });
});
