$(document).ready(function(){	 								 
								  
			
			$('i').each(function(index) {
				$(this).not('.top_link').replaceWith("<a href='" + $(this).attr("title") + "'>" +$(this).html() + "</a>");
				if ($(this).attr('class')=='top_link') $(this).replaceWith("<a href='" + $(this).attr("title") + "' class='top_link'>" +$(this).html() + "</a>");
			});
			
			
  

	});
