HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/MBoogaard/oosting-horseriding.com/CMS/oosting/media/system/js/horse-main.js
pux = window.pux || {};

pux.menu = function (){
    $(".main-menu").meanmenu({
        meanScreenWidth: "991",
        meanMenuContainer: ".mobile-menu",
        //puxlogo: "/PGV/media/system/img/logo-web.png",
        //topMenuToJoin: ".top-menu",
    });
};


pux.fixedMenu = function () {
    if ($(document).scrollTop() >= 10) {
        $("#header").addClass("scrolled");
        $('.after-menu').addClass("scrolled");
    }else {
        $("#header").removeClass("scrolled");
        $('.after-menu').removeClass("scrolled");
    }
};

pux.fancy = function () {
    
};

pux.initComponents = function () {
    pux.menu();
};

pux.resizeComponents = function () {

};

$(window).resize(function () {

});

$(document).ready(function () {
    pux.initComponents();
});

$(window).load(function () {
    
});

$(document).scroll(function () {
    pux.fixedMenu();
});

var resizeTimeout;

$(window).resize(function () {
    pux.resizeComponents();
});