//GNB
var $top = $('#top');
$gnbLi = $('#gnb > li'),
gnbSpd = 200;
function gnbPc(){
$gnbLi.on('mouseenter.gnbpc',function(){
$(this).children('ul').show();
$(this).siblings().children('ul').hide();
$top.stop().animate({'height':120},gnbSpd);
});
$top.on('mouseleave.gnbpc',function(){
$gnbLi.children('ul').hide();
$top.stop().animate({'height':108},gnbSpd);
});
}
function gnbMobile(){
$gnbLi.off('.gnbpc');
$top.off('.gnbpc');
}
//리사이즈 이벤트
var $win = $(window),
winWidth = $win.width();
function main(){
winWidth = $win.width();
if(winWidth > 769){
gnbPc();
}else{
gnbMobile();
}
};
main();
$win.resize(function(){;
main();
})