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>");
		});
		
		var html=$("body").html();
		//$("body").html(html.replace('\<\!\-\-noindx','').replace('noindx\-\-\>','').replace('\<\!\-\-noindx','').replace('noindx\-\-\>',''));
		$("body").html(html.replace(new RegExp("<\!\-\-noindx","gim"),'').replace(new RegExp("noindx\-\-\>","gim"),''));
			
	});
