<script>
document.addEventListener('DOMContentLoaded', function () {

    // Alleen items binnen een submenu selecteren
    const menuItems = document.querySelectorAll(
        '.elementor-nav-menu .sub-menu .menu-item-has-children'
    );

    menuItems.forEach(function(item) {

        const parentLink = item.querySelector(':scope > a');
        const subMenu = item.querySelector(':scope > .sub-menu');

        if (!parentLink || !subMenu) return;

        // Voorkom dubbele toevoeging
        if (subMenu.querySelector('.parent-label-item')) return;

        const li = document.createElement('li');
        li.classList.add('menu-item', 'parent-label-item');

        // Klikbare link maken
        const link = document.createElement('a');
        link.href = parentLink.href;
        link.innerHTML = parentLink.innerHTML;

        // Optioneel
        if (parentLink.target) {
            link.target = parentLink.target;
        }

        if (parentLink.rel) {
            link.rel = parentLink.rel;
        }

        li.appendChild(link);

        // Bovenaan submenu plaatsen
        subMenu.prepend(li);
    });

});
</script>
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//fritsvanzelst.nl/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://fritsvanzelst.nl/post-sitemap.xml</loc>
		<lastmod>2026-03-24T10:26:56+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://fritsvanzelst.nl/page-sitemap.xml</loc>
		<lastmod>2026-05-04T09:26:58+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->