(function($) {
    $.fn.wrLink = function() {
        return this.each(function() {
            var $this = $(this);
            $this.attr("href", $this.attr('rel'));
            $this.attr("target", "_blank");
        });
    }
})(jQuery);