//fixed_menu var menu_box = $('#menu_box'); menu_box.before(''); var menu_replacer = $('#menu_replacer'); var menu_replacer_h = $('#main_menu').outerHeight(true); menu_box.children('div').addClass('bordered') var menu_offset = menu_replacer.offset().top; $(window).scroll(function(){ if($(window).scrollTop()>menu_offset+50){ menu_box.addClass('fixed_nav') menu_box.children('div').addClass('w_960'); if(!menu_box.hasClass('ready')){ menu_box.css('top',-100); changeHeight(); } }else if($(window).scrollTop()<=menu_offset){ menu_replacer.css('height',0); menu_box.removeClass('fixed_nav ready'); menu_box.children('div').removeClass('w_960'); } function changeHeight(){ menu_replacer.css('height', menu_replacer_h); menu_box.addClass('ready').animate({'top':0},500); } }); $(function() { $('body').append(''); $(window).scroll(function () { if ($(this).scrollTop() > 100) { $('#on_top').fadeIn(); } else { $('#on_top').fadeOut(); } }); $('#on_top').click(function () { $('body,html').animate({scrollTop:0},1000); }); });