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