$(function(){ //Ãʱ⼳Á¤ $("#header2 .lnb li").css("opacity","0.25"); $("#header2 .gnb .gnb_sub li").css("opacity","0.6"); //¸Þ´º ¸ð¼Ç $("#header2 .lnb li").hover(function(){ $(this).stop().animate({"opacity":"0.8"},500); },function(){ $(this).stop().animate({"opacity":"0.25"},500); }) $("#header2 .gnb li").hover(function(){ $(this).find(".gnb_over:not(:animated)").animate({"margin-top":"0"},200); $(this).find(".gnb_sub:not(:animated)").fadeIn(300); },function(){ $(this).find(".gnb_over").animate({"margin-top":"-14px"},200); $(this).find(".gnb_sub").fadeOut(200); }) $("#header2 .gnb .gnb_sub li").hover(function(){ $(this).stop().animate({"opacity":"1"},500); },function(){ $(this).stop().animate({"opacity":"0.6"},500); }) })