$(function(){ $('.dropdown-menu').mouseenter(function(){ $(this).parents('.dropdown').children('a').addClass('on'); }); $('.dropdown>a').siblings('ul').mouseleave(function(){ $(this).parents('.dropdown').children('a').removeClass('on'); }); //follow quick menu $(window).scroll(function(){ var scrollTop = $(document).scrollTop(); var i = 120; if (scrollTop < 300) {scrollTop = 300;} $("#followquick").stop(); $("#followquick").animate({ "top" : scrollTop+i }); }); $(window).scroll(function(){ var scrollTop = $(document).scrollTop(); var i = 100; if (scrollTop < 200) {scrollTop = 200;} $("#m-followquick").stop(); $("#m-followquick").animate({ "top" : scrollTop+i }); }); $(window).scroll(function(){ var scrollTop = $(document).scrollTop(); var i = 150; if (scrollTop < 230) {scrollTop = 230;} $(".quick-img").stop(); $(".quick-img").animate({ "top" : scrollTop+i }); }); $('#m-followquick').on('click',function(){ $(this).toggleClass('on'); if($('#m-followquick').hasClass('on')){$('.quick-img').stop().animate({right:0},500);} else{$('.quick-img').stop().animate({right:-136},500);} }); });