jQuery(document).ready(function(){
	$("i[title]").each(function(){
		$(this).replaceWith("<a href='" + $(this).attr("title") + "'>" +$(this).html() + "</a>");
	});
});
