///*別タブ用*///
$(document).ready( function () {
    $(".blank").after('&nbsp;');
    $('.blank').click(function(){
        window.open(this.href, '_blank');
        return false;
    });
});

///*BOX全体用*///
$(function(){
     $(".linkBox").click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
});

