// jQuery replacelink plugin
// Allows replacement of strings in links

(function($) {
  jQuery.fn.replacelink = function(replacestring, removeclass) {
    var link = this.get(0);
    link.href = replacestring;
    if (removeclass) {
      this.removeClass(removeclass);
      this.unbind();
    }
  }
})(jQuery);
