jQuery(function($){var nav_offset_top=$('#masthead').height();function navbarFixed(){if($('#masthead').length){$(window).scroll(function(){var scroll=$(window).scrollTop();if(scroll>=nav_offset_top){$("#masthead").addClass("navbar_fixed");}else{$("#masthead").removeClass("navbar_fixed");}});};};navbarFixed();});jQuery(function($){$(".scrollDown").click(function(event){$("html, body").animate({scrollTop:"+=450px"},800);});});