Your IP : 3.135.205.148


Current Path : /home/church/esselwebdesign.com/wp-content/themes/guava/assets/js/
Upload File :
Current File : /home/church/esselwebdesign.com/wp-content/themes/guava/assets/js/sticky-menu.js

(function($) {
    "use strict";
	    jQuery(document).ready(function() {
    		//Sticky header
		    var headerHeight = $('.section-menu').height();
		    $(window).scroll(function() {
		        if ($(window).scrollTop() > headerHeight) {
		            $('.section-menu').addClass('fixed-top');
		        } else {
		            $('.section-menu').removeClass('fixed-top');
		        }
		    });
    	});
})(jQuery);