$('.nav > ul > li').find('ul').slideUp(); //сначала закрываешь все
$(this).find('ul').slideToggle(); //потом открываешь нужный
(вероятно обновляется страница)- тобишь ты сам не знаешь че происходит на твоем сайте?
$('h3').siblings('p').wrap('<div class="content"></div>');
$('h3').nextUntil('h3').wrap('<div class="content"></div>');
$('h3').each(function() {
$(this).nextUntil('h3').wrapAll('<div class="content"></div>');
});
$(window).scroll(function() {
var top = $(document).scrollTop();
if (top < 650) {
$(".header-content").css({top: '0', position: 'relative'});
$(".under-header").css('padding-top', 0);
} else {
$(".header-content").css({top: '0px', position: 'fixed'});
$(".under-header").css('padding-top', headerHeight);
}
});