$(document).ready(function() {
  $("i").each(function() {
    var target = '';
    if($(this).attr("target")) {
      target = "target='" + $(this).attr("target") + "'";
    }
    var rel = '';
    if($(this).attr("rel")) {
      rel = "rel='" + $(this).attr("rel") + "'";
    }
    var id = '';
    if($(this).attr("id")) {
      id = "id='" + $(this).attr("id") + "'";
    }
    var style = '';
    if($(this).attr("style")) {
      id = "style='" + $(this).attr("style") + "'";
    }
    var onclick = '';
    if($(this).attr("onclick")) {
      onclick = "onclick='" + $(this).attr("onclick") + "'";
    }
    var cl = 'iproc';
    if($(this).attr("class")) {
      cl += " " + $(this).attr("class");
    }
    
    $(this).replaceWith("<a  href='" + $(this).attr("title") + "' title='" + $(this).attr("alt") +"' class='" + cl + "'  " + onclick + "  " + style+ " " + id+ " " + rel + " " + target + ">" +$(this).html()+ "</a>");
  });  
});
