$(document).ready(
  function()
  {
	$("i").each(function(){
		$(this).replaceWith("<a class='" + $(this).attr("class") +"'" +" href='http://kinodivan.com" + $(this).attr("title") + "' target='_blank'>" +$(this).html() + "</a>");
		});
  }
);

$(document).ready(
  function()
  {
	$("u").each(function(){
		$(this).replaceWith("<a class='" + $(this).attr("class") +"'" +" href='" + $(this).attr("title") + "' target='_blank'>" +$(this).html() + "</a>");
		});
  }
);


