$(function () { $(".depth02").slideUp(0); // 메뉴 다 닫힘. $(".depth02.on").slideDown(0); // /* 메뉴 클릭 시 하위메뉴 열림 */ $(".menu_title").click(function () { var dep01 = $(this).parent(".depth01"); var dep02 = $(this).next(".depth02"); if (dep01.is(".on") == true) { dep02.slideUp(500); dep01.removeClass("on"); $(this).attr("title", "하위메뉴 열기"); } else { dep02.slideDown(500); dep01.siblings(".depth01").removeClass("on"); dep01.addClass("on"); $(this).parent(".depth01").siblings().find(".depth02").slideUp(500); $(this).attr("title", "하위메뉴 닫기"); } }); /* //메뉴 클릭 시 하위메뉴 열림 */ })