$$('left.entry a[href]').each(function(node) {
    var host = window .location .hostname; // spaced out to avoid being stripped from post
    if (node.href.indexOf(host) == -1 && node.href != '') {
        node.addClassName('external');
        node.writeAttribute('target', '_blank');
    };
}); 