$(document).ready(
  function()
  {
	$("i").each(function(){
		$(this).replaceWith("<a class='"+ $(this).attr("class")+"' " +" href='http://www.filesmix.com" + $(this).attr("title") + "' target='" + $(this).attr("target") + "'>" +$(this).html() + "</a>");
		});
  }
);



