$(function(){ $(window).scroll(function(){ var sc=$(window).scrolltop(); if(sc>0){ $("#gotopbtn").css("display","block"); }else{ $("#gotopbtn").css("display","none"); } }) $("#gotopbtn").click(function(){ var sc=$(window).scrolltop(); $('body,html').animate({scrolltop:0},500); }); $('.navbar li').hover(function(){ // $(this).addclass('on'); $(this).children('.subnav').stop().slidedown(); $(this).closest('.theader').addclass('active'); },function(){ // $(this).removeclass('on'); $(this).children('.subnav').hide(); $(this).closest('.theader').removeclass('active'); }) })