$(function(){

    $("a[rel~='external']").each(function() {
        this.target = "_blank";
        this.title = "Enlace externo: " + this.title;
    });

    $("a[rel~='external']:not(:has(img))").addClass("externalLink");

});
