$(document).ready(function(){

    /********************************** Para target _blank ************************/

    $('a[rel*=_blank]').click( function() {
        window.open(this.href);
        return false;
    });




});

