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();
});