// source --> https://physiotherapie-probst.de/wp-content/themes/hello-elementor-child/javascript.js?ver=6.9.4 
    (function ($) {

        // Fade in/out header menu on top
        $(window).scroll(function(){
            var scrollPos = $(document).scrollTop();
            if(scrollPos > 150) {
                $(".headerslct").addClass("stickyheadm");
            } else {
                $(".headerslct").removeClass("stickyheadm");
            }
        });

        $( document ).ready(function() {
        });

    })(jQuery);