<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
var _gnbSwiper;
var _hFixPos;

jQuery(document).ready(function($){
	_hFixPos = $(".h_btm_wrap").offset().top;
	//gnb settings
	$(".gsnb &gt; li &gt; a, .gnb &gt; li &gt; a").on("click", function(){
		if (isMobile() &amp;&amp; $(window).width() &gt; 767) return false;
	});
	$(".gnb &gt; li").on("mouseenter focusin", function(){
		$('.all_cate_hidden').removeClass('on');
		if ($(this).find(".gsnb_box").length &gt; 0 &amp;&amp; $(window).width() &gt; 767) {
			$(this).addClass("active");
		}

	});
	$(".gnb &gt; li").on("mouseleave focusout", function(){
		if ($(this).find(".gsnb_box").length &gt; 0) {
			$(this).removeClass("active");
			$(this).find(".gsnb_box").removeAttr("style");
		}
	});
	$(".gsnb &gt; li").on("mouseenter focusin", function(e){
		$(this).siblings("li").removeClass("active");
		if ($(this).find(".gsnb_3dep").length &gt; 0) {
			console.log($(".gsnb_3dep",this));
			$(this).closest(".gsnb_box").height(Math.max($(this).closest(".gsnb").height(), $(".gsnb_3dep",this).height()));
			$(this).addClass("active");
		} else {
			$(this).closest(".gsnb_box").height('auto');
		}
	});
	$(".gsnb &gt; li").on("mouseleave focusout", function(){
		$(this).removeClass("active");
	});

	if ($(window).width() &lt;= 652) createGnbSwiper();

});

//create gnb swiper in mobile size (&lt;=568)
function createGnbSwiper(){
	$('&lt;link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.0.7/css/swiper.min.css" id="swiper_css"&gt;').appendTo("head");
	var idx = ($(".swiper-wrapper li.on").closest("ul").attr("class") == "gnb" || $(".swiper-wrapper li.on").length &lt; 1) ? 0 : 1;

	$("#swiper_css").load(function(){
		_gnbSwiper = new Swiper('.gnb_wrap', {
			freeMode: true,
			slidesPerView:'auto',
			initialSlide:idx
		});
	});
}
//remove gnb swiper
function removeGnbSwiper(){
	$("#swiper_css").remove();
	_gnbSwiper.destroy(false, true);
}

//resizing
var _breakTimer;
var _prevWidth = $(window).width();

$(window).resize(function(){
	var _currentWidth = $(window).width();

	clearTimeout(_breakTimer);

	setTimeout(function(){
		if (_prevWidth &gt; 568 &amp;&amp; _currentWidth &lt;= 568) {
			createGnbSwiper();
		}
		if (_prevWidth &lt;= 568 &amp;&amp; _currentWidth &gt; 568) {
			removeGnbSwiper();
		}
		if (_prevWidth &lt;= 1023 &amp;&amp; _currentWidth &gt; 1023) {
			$(".lnb").removeAttr("style");
		}
		if (_prevWidth &lt;= 767 &amp;&amp; _currentWidth &gt; 767) {
			_hFixPos = $(".h_btm_wrap").offset().top;
		}

		_prevWidth = _currentWidth;
	}, 100);

});


$(window).scroll(function(){
	var pos = $(window).scrollTop();

	if (pos &gt; _hFixPos) {
		$(".h_btm_wrap").addClass("fixed");
	} else {
		$(".h_btm_wrap").removeClass("fixed");
	}

});
*/

//PC, íƒ€ë¸”ë&nbsp;› Quick
function toggleOnlineQuick(){
	$(".pc_quick01").hasClass("opened") ? closeOnlineQuick() : $(".pc_quick01").addClass("opened");
};
function closeOnlineQuick(){
	//var confr = confirm("ìž‘ì„±í•œ ë‚´ìš©ì´ ëª¨ë‘ ì‚¬ë¼ì§‘ë‹ˆë‹¤.\nê·¸ëž˜ë„ ë‹«ìœ¼ì‹œê²&nbsp;ìŠµë‹ˆê¹Œ?");
	//if (confr)
	//{
		$(".pc_quick01").removeClass("opened");
		$(".online_field input, .online_field textarea").val("");
		$(".online_field select option:eq(0)").prop("selected", true);
	//}
}

function closeOnlineQuick2()
{
		$(".pc_quick01").removeClass("opened");
		$(".online_field input, .online_field textarea").val("");
		$(".online_field select option:eq(0)").prop("selected", true);
}

//íŽ˜ì´ì§€ ë§¨ ìœ„ë¡œ ë³´ë‚´ê¸°
function goPageTop(){
	$("html, body").stop().animate({scrollTop:0}, 1200, 'easeOutQuint');
}</pre></body></html>