$(document).ready(function()
{
    $('a._blank').each(function() {
        $(this).attr('target', '_blank');
    });
});

