$(document).ready(function(){ //head $(".header .gnb li").hover(function(){ $(this).children("dl").stop(false,true).slideToggle("fast"); }); //main $(".mvisual").slick({ dots: true, arrows: false, autoplay: true, autoplaySpeed: 3000 }); $(".mc03_slide").slick({ dots: false, arrows: true, autoplay: true, autoplaySpeed: 3000, slidesToShow: 4, slidesToScroll: 1, variableWidth: true, swipe: false }); //탭(ul) onoff $('.jq_tabonoff>.jq_cont').children().removeClass('on'); $('.jq_tabonoff>.jq_cont div:first-child').addClass('on'); $('.jq_tabonoff>.jq_tab li:first-child').addClass('on'); $('.jq_tabonoff').delegate('.jq_tab>li', 'click', function() { var index = $(this).parent().children().index(this); $(this).siblings().removeClass(); $(this).addClass('on'); $(this).parent().next('.jq_cont').children().removeClass('on').eq(index).addClass('on'); }); //서브 $(".aside .inner dl").hover(function(){ $(this).stop(false,true).toggleClass("on").children("dd").stop(false,true).slideToggle("fast").parent().siblings().removeClass("on").children("dd").slideUp("fast"); }); });