/*
// Useless with Firefox because it makes every link
// absolute by the time it's accessed from the DOM!
$(document).ready(function() {
    $("a").each(function() {
        var href = new String(this.href);
        if (href.indexOf("http://") != -1 || href.indexOf("https://") != -1) {
            alert(this.href);
            $(this).click(function() {
                window.open(this.href);
                return false;
            });
        }
    });
});
*/

$(document).ready(function() {
    $("a.external").click(function() {
        window.open(this.href);
        return false;
    });
});

