$(function() {
2
    $('a[href^=http]').click( function() {
3
        window.open(this.href);
4
        return false;
5
    });
6
});

