$(document).ready(function () { //상단 공통 슬라이드 메뉴 $('#Gnb .sGnb ul.sGnb_m li').hover(function(){ $('#Gnb .sGnb_mask').slideDown(100); }); $('#Gnb').mouseleave(function(){ $('#Gnb .sGnb_mask').hide(); }); $(function(){ SyntaxHighlighter.all(); }); $(window).load(function(){ $('.flexslider').flexslider({ animation: "fade", start: function(slider){ $('body').removeClass('loading'); } }); }); $('#allview').click(function(){ $('#all').show(); }); $('#Gnb .sGnb ul.sGnb_m li.view').hover(function(){ $('#Gnb .sGnb_mask').hide(); }); $('#all .apop .close').click(function(){ $('#all').hide(); }); });