(function($) {

    $(function() {
        // 別ウィンドウでリンクを開く
        $('a[rel~=external]').each(function() {
            this.target = "_blank";
        });
    });

})(jQuery);
