(function($){
$.fn.dropdown = function(){
return this.each(function(){
var $gnb = $(this),
$menu = $gnb.find(".menu"),
$depth1 = $gnb.find(".depth1"),
$depth2 = $gnb.find(".depth2");
$gnb.mouseenter(function(){
gnbOn();
}).mouseleave(function(){
gnbOff();
});
$gnb.find("a").focusin(function(){
gnbOn();
}).focusout(function(){
gnbOff();
});
function gnbOn(){
$gnb.find($depth2).stop().animate({height: "238"});/*�쒕툕硫붾돱 �믪씠 議곗젅*/
}
function gnbOff(){
$gnb.find($depth2).stop().animate({height: "0"});
}
});
}
})(jQuery);
$(function(){
$(".dropdown").dropdown();
});
/*�꾩껜硫붾돱*/
$('#toggle').click(function() {
$(this).toggleClass('active');
$('#overlay').toggleClass('open');
});