var tabSwiper = new Swiper('.proShow-box', {
speed: 500,
autoHeight: true,
on: {
slideChangeTransitionStart: function () {
$(".proShow-menu .on").removeClass('on');
$(".proShow-menu a").eq(this.activeIndex).addClass('on');
}
}
});
$(".proShow-menu a").on('click', function (e) {
e.preventDefault();
$(".proShow-menu .on").removeClass('on');
$(this).addClass('on');
tabSwiper.slideTo($(this).index());
});