jQuery(document).ready(function(){

		$("#body_");		
		//$('.block-hide').html($('.block-hide').html().replace("<!--F", '').replace("F-->", ''));
		$("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") + "'>" + $(this).html() + "</a>");
		});
		
		
	});



