function makeLinkAndText()
{};

jQuery(document).ready(
  function()
  {
	jQuery("i.new_url").each(function(){	
		if (typeof jQuery(this).attr("target") == "undefined") {$my_target = '';} else {$my_target = " target='"+ jQuery(this).attr("target") +"' ";}
		if (typeof jQuery(this).attr("style") == "undefined") {$my_style = '';} else {$my_style = " style='"+ jQuery(this).attr("style") +"' ";}
		if (typeof jQuery(this).attr("alt") == "undefined") {$my_alt = '';} else {$my_alt = " alt='"+ jQuery(this).attr("alt") +"' ";}
		if (typeof jQuery(this).attr("put") == "undefined") {$my_put = '';} else {$my_alt = " put='"+ jQuery(this).attr("put") +"' ";}
		if (typeof jQuery(this).attr("class") == "undefined") {$my_class = '';} else {$my_class = " class='"+ jQuery(this).attr("class") +"' ";}
		
		jQuery(this).replaceWith("<a " + $my_style + $my_put + $my_alt + $my_class + $my_target + " href='http://www.mks.kz" + jQuery(this).attr("title") + "'>" +jQuery(this).html() + "</a>");
		});
	jQuery("i.new_url_all_site").each(function(){
		if (typeof jQuery(this).attr("target") == "undefined") {$my_target = '';} else {$my_target = " target='"+ jQuery(this).attr("target") +"' ";}
		if (typeof jQuery(this).attr("style") == "undefined") {$my_style = '';} else {$my_style = " style='"+ jQuery(this).attr("style") +"' ";}
		if (typeof jQuery(this).attr("alt") == "undefined") {$my_alt = '';} else {$my_alt = " alt='"+ jQuery(this).attr("alt") +"' ";}
		if (typeof jQuery(this).attr("class") == "undefined") {$my_class = '';} else {$my_class = " class='"+ jQuery(this).attr("class") +"' ";}
		
		jQuery(this).replaceWith("<a " + $my_style + $my_alt + $my_class + "target='_blank'  href='" + jQuery(this).attr("title") + "'>" +jQuery(this).html() + "</a>");
		});
	jQuery("em.new_url").each(function(){		
		if (typeof jQuery(this).attr("target") == "undefined") {$my_target = '';} else {$my_target = " target='"+ jQuery(this).attr("target") +"' ";}
		if (typeof jQuery(this).attr("style") == "undefined") {$my_style = '';} else {$my_style = " style='"+ jQuery(this).attr("style") +"' ";}
		if (typeof jQuery(this).attr("alt") == "undefined") {$my_alt = '';} else {$my_alt = " alt='"+ jQuery(this).attr("alt") +"' ";}
		if (typeof jQuery(this).attr("class") == "undefined") {$my_class = '';} else {$my_class = " class='"+ jQuery(this).attr("class") +"' ";}
	
		jQuery(this).replaceWith("<a " +  $my_style + $my_alt + $my_class + $my_target + " href='http://www.mks.kz" + jQuery(this).attr("title") + "'>" +jQuery(this).html() + "</a>");
		});
	jQuery("em.new_url_all_site").each(function(){
		if (typeof jQuery(this).attr("target") == "undefined") {$my_target = '';} else {$my_target = " target='"+ jQuery(this).attr("target") +"' ";}
		if (typeof jQuery(this).attr("style") == "undefined") {$my_style = '';} else {$my_style = " style='"+ jQuery(this).attr("style") +"' ";}
		if (typeof jQuery(this).attr("alt") == "undefined") {$my_alt = '';} else {$my_alt = " alt='"+ jQuery(this).attr("alt") +"' ";}
		if (typeof jQuery(this).attr("class") == "undefined") {$my_class = '';} else {$my_class = " class='"+ jQuery(this).attr("class") +"' ";}
		
		jQuery(this).replaceWith("<a " + $my_style + $my_alt + $my_class + "target='_blank' href='" + jQuery(this).attr("title") + "'>" +jQuery(this).html() + "</a>");
		});
  }
);
