$(document).ready(function() { $(".openMenu a").click(function(){ $(".opaB").fadeIn(100); $(".menu").animate({left:0},500); return false; }) $(".closeMenu").click(function(){ $(".opaB").fadeOut(100); $(".menu").animate({left:-200},500); return false; }) $("#btn_menu").click(function() { $(".menu").height($("body").height()-$("#header").height()); $(".menu").toggle(); }); $(".menu ul li").click(function() { if($(this).hasClass("depth")) { $(this).removeClass("depth"); $(this).addClass("depth-open"); $(this).find("ul").show(); } else if($(this).hasClass("depth-open")) { $(this).removeClass("depth-open"); $(this).addClass("depth"); $(this).find("ul").hide(); } }); });