		$(document).ready(
		  function()
		  {

                        var html = '';
			$("i").each(function(){

                                        if( $(this).attr("class") == "self" )
                                       {
                                                        html ='';
                                                        html = $(this).html();
                           				$(this).replaceWith("<a target='_blank' class='" + $(this).attr("class") +"'" +" href='http://www.k-interier.ru" + $(this).attr("title") + "'>" + html + "</a>");

                                       }
                                        else
                               				$(this).replaceWith("<a class='" + $(this).attr("class") +"'" +" href='http://www.k-interier.ru" + $(this).attr("title") + "'>" +$(this).text() + "</a>");

				                         });
		  }
		);
