$(function(){
    $('a.external').click(function(){
        window.open(this.href);
        return false;
    });
});
$(function(){
    $('a.external-header').click(function(){
        window.open(this.href);
        return false;
    });
});
