Код:
<!--HTML--><!-- Ротатор рекламных шаблонов © max, the murderer! 2022 -->
<script type="text/javascript">
$.get('/export.php?type=rss&tid=6','',processXML);
function processXML(data) {
    var templates = $(data).find('item description');
    var template = $(templates[Math.floor(Math.random() * templates.length)]).text();    

    if ($('#pun-main h1 span').is(':contains("ротатор рекламы")')) {
        var head_post = $('.topic').find('.post:first .post-content');
        $(head_post).html(template);

        var text = select_text.linkText;
        var codeLegend = '<a href="javascript://" onclick="select_text($(this).parent().next().find(\'pre\').get(0));return!1">' + text + '</a>';
        $(head_post).find('.code-box .legend').html(codeLegend);
    };
};
</script>