/* 농심 : 기업사이트 2013.07 ~ 2013.10 author : icetea ( sjlee7901@naver.com ) in PCN */ $(function () { tabCon(); layerCtl_default(); }); function tabCon() { var $tabNav = $('#tabCtl li a'); var $tabCon = $('.tabCon'); $tabNav.click(function(ev) { ev.preventDefault(); $tabCon.hide(); $tabNav.removeClass(); $($(this).addClass('on').attr('href')).show(); }); $tabNav.eq(0).trigger('click'); } function layerCtl_default() { $('.openLayer').click(function(ev) { ev.preventDefault(); var _this =$(this); var vCont = _this.attr('href'); $('
').appendTo('#content'); $('.bgLayer').fadeTo('fast', 0.6, function() { $(vCont).show(0, function() { $(this).attr('tabIndex',0).focus(); }); $('.closeLayer').click(function() { $('.bgLayer').remove(); $(this).parents('.boxLayer').hide(300); _this.focus(); }); }); }); }