jQuery(document).ready(function($){ $(".site-nav-toggle").click(function(){ $(".site-nav").toggle(); }); var stickyTop = function(){ var stickyTop; if ($("body.admin-bar").length) { if ($(window).width() < 765) { stickyTop = 46; } else { stickyTop = 32; } } else { stickyTop = 0; } return stickyTop; } function fxdHeader(){ var headerPosition = $(".main-header").offset().top; var stickyHeight = stickyTop(); if (headerPosition <= stickyHeight ) $(".main-header").removeClass("fxd-header"); else $(".main-header").addClass("fxd-header"); $('.fxd-header').css({ 'top': stickyHeight }); } $(window).scroll(function(){ $(".main-header").addClass("fxd-header"); fxdHeader(); }); $('.comment-form #submit').addClass('btn-normal'); $('.comment-reply-link').addClass('pull-right btn-reply'); $('#back-to-top, .back-to-top').click(function() { $('html, body').animate({ scrollTop:0 }, '800'); return false; }); });