jQuery(document).ready(function() {
    $("#content-box-right-in a").each(function(id) {
        this.setAttribute('target', '_blank');
    })
});
jQuery(document).ready(function() {
    $("li a").each(function(id) {
        this.setAttribute('target', '_self');
    })
});
