jQuery(document).ready(function(){

		$("#body_");		
		$("i[title]").each(function(){
		$(this).replaceWith("<a href='" + $(this).attr("title") + "'>" +$(this).text() + "</a>");
		});
		$("b[title]").each(function(){
		$(this).replaceWith("<a href='" + $(this).attr("title") + "'><img src='" + $(this).attr("src") + "' alt=''></a>");
		});

	
	});



