티스토리 뷰

function gnb(){
    $('#gnb > li').on('mouseenter',function(e){
        if($(this).children('a').next('ul').length){
            $(this).children('a').next('ul').stop().fadeIn(200);
            $('#gnb > li').not(this).children('a').next('ul').stop().fadeOut(200);
            $('.nav').stop().animate({
            	'height':'100px'
            }, 100);
        }else{
            $('.sub-gnb').stop().fadeOut(200);
            $('.nav').stop().animate({
            	'height':'65px'
            }, 100);
        }
	});
    $('#gnb').on('mouseleave',function(e){
        $('.sub-gnb').stop().fadeOut(200);
        $('.nav').stop().animate({
        	'height':'65px'
        }, 100);
    });
}
공지사항