jQuery(document).ready(function(){ jQuery(".search-top").click(function(){ jQuery("#masthead .search-form-top").toggle(); }); jQuery("#scroll-up").hide(); jQuery(function () { jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > 1000) { jQuery('#scroll-up').fadeIn(); } else { jQuery('#scroll-up').fadeOut(); } }); jQuery('a#scroll-up').click(function () { jQuery('body,html').animate({ scrollTop: 0 }, 800); return false; }); }); var nice = jQuery('html').niceScroll( {horizrailenabled:false} ); });