$(document).ready(function() {

    $('a[rel=target_blank]').click(function() {
        window.open(this);
        return false;
    });

});

