  $(document).ready(function(){
	
	//меняем префикс $ на jq, чтобы не было конфликтов с mootools
	var jq = jQuery.noConflict();

	//меняет i на a
	jq('i').each(function() {
	
	jq(this).replaceWith("<a href='" + jq(this).attr("title") + "'>" +jq(this).text() + "</a>");
	
	
	})
  

  });
 

