        (function ($) {
                $(document).ready(function() {
                        // replace nolinks
                        $("a[href$='/%3Cnolink%3E']").each(function(index) {
                                $(this).replaceWith("<span class='nolink'>" + $(this).text() + "</span>");
                        });
                        // replace separators
                        $("a[href$='/%3Cseparator%3E']").each(function(index) {
                                $(this).replaceWith("<span class='separator'><hr></span>");
                        });
                });
       })(jQuery);
;

