var swiper = new swiper('.swiper-container', { loop : true, autoplay: { delay: 12000, }, navigation: { nextel: '.note-button-next', prevel: '.note-button-prev', }, }); var swiper = new swiper('.swiper-banner', { spacebetween: 30, effect: 'fade', autoplay: { delay: 10000, }, loop : true, navigation: { nextel: '.banner-button-next', prevel: '.banner-button-prev', }, }); $(function() { $(".content-left-slide .tab-item").hover(function() { $(this).addclass("active").siblings().removeclass("active"); $(".content-left-slide .article-content .main-content").eq($(this).index()).show().siblings().hide(); $(".content-left-slide .index-news-more-link").eq($(this).index()).show().siblings().hide(); }) $(".content-right-slide .tab-item").hover(function() { $(this).addclass("active").siblings().removeclass("active"); $(".content-right-slide .article-height .main-content").eq($(this).index()).show().siblings().hide(); $(".content-right-slide .index-news-more-link").eq($(this).index()).show().siblings().hide(); }) $(".content-bottom-left-slide .tab-item").hover(function() { $(this).addclass("active").siblings().removeclass("active"); $(".content-bottom-left-slide .article-height .main-content").eq($(this).index()).show().siblings().hide(); $(".content-bottom-left-slide .index-news-more-link").eq($(this).index()).show().siblings().hide(); }) $(".content-bottom-right-slide .tab-item").hover(function() { $(this).addclass("active").siblings().removeclass("active"); $(".content-bottom-right-slide .article-height .main-content").eq($(this).index()).show().siblings().hide(); $(".content-bottom-right-slide .index-news-more-link").eq($(this).index()).show().siblings().hide(); }) $(".menu-left .tab-item").hover(function() { $(this).addclass("active").siblings().removeclass("active"); $(".menu-left .institutions-list .main-content").eq($(this).index()).show().siblings().hide(); $(".menu-left .index-news-more-link").eq($(this).index()).show().siblings().hide(); }) })