$('.gh').click(function(){ if($('.gh').hasClass('selected')){ $('.gh').removeClass('selected'); $('.m-nav').stop().animate({ right:'-80%' },300,function(){ $(this).hide(); }); $(".shade").fadeOut(300); $('body').removeClass("height"); } else{ $('.gh').addClass('selected'); $('.m-nav').show(); $('.m-nav').stop().animate({ right:0 }); $(".shade").fadeIn(300); $('body').addClass("height"); } }); $(".shade").on("click",function(){ $(this).fadeOut(300); $('.gh').removeClass('selected'); $('.m-nav').stop().animate({ right:'-80%' },300,function(){ $(this).hide(); }); $('body').removeClass("height"); }) if($('.wow').size()>0){ if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))){ new WOW().init(); } }