$(document).ready(function() {
    $("a").filter(function() {
        return this.hostname && this.hostname.replace("www.", "") != location.hostname.replace("www.", "");
    }).click(function() {
        window.open($(this).attr("href"));
        return false;
    });
});
