//gnb $(document).ready(function(){ var $gnbLi=$('#gnb>ul>li'); var $gnbSub=$('#gnb>ul>li>ul'); $gnbLi.mouseenter(function(){ $(this).find('ul').show(); $(this).find('a').addClass('on'); }); $gnbLi.mouseleave(function(){ $gnbSub.hide(); $(this).find('a').removeClass('on'); }); });