function parseXml(xml,tid)  {
  $(xml).find("player").each(function()  {
    var nSplash = $(this).find("splash").text();
    $("#"+tid).append('<img src="'+nSplash+'" width="100%" border="0" class="splash" alt=""/>');
  });
}

$(function() {

if ( $('.ntvnewsvideo').length > 0 ) {
    $(".ntvnewsvideo").each(function(i) {
      var tid = $(this).attr("id");
      var videoUrl = "/novosti/playerNewsInfo2.jsp?id="+tid;
      $(this).replaceWith('<div class="nintxt" id="vi'+tid+'"><a href="/video/ntv'+tid+'/"><img src="/img/wtch.png" width="86" height="30" alt="" class="play" /></a></div>');
      $.ajax({
        type: "GET",
        url: videoUrl,
        dataType: "xml",
        success: function(xml) { parseXml(xml,"vi"+tid); }
      });
    });

  }
});
