/*
 * (c) 2009 flat-eric, v.1
 */
jQuery.fn.replaceWith = function(replacement) {
  return this.each(function(){
    element = $(this);
    $(this)
      .after(replacement).next()
      .attr('href', element.attr('link')).attr('style', element.attr('style'))
      .html(element.html())
      .prev().remove();
  });
};

$('span.links234').replaceWith('<a></a>');
