
function addTargetAttribute() {
$('a').each(function() {
    var href = $(this).attr('href');
    if (href.indexOf('http://', 0) == 0 && href.indexOf('http://s.j-ichiba.jp', 0) == -1) {
        $(this).attr({ target: '_blank' })
    }
});
}

$(document).ready(addTargetAttribute);