$('.audio__select').click(function(e) {
e.preventDefault();
$('.audio__list').parent().find('.audio__select').not(this).parent().find('.audio__list').removeClass('active');
$(this).parent().find('.audio__list').toggleClass('active');
$(this).parent().css('z-index', 3).siblings().css('z-index', 'unset');
});
$('#support .slide').mouseleave(function(e) {
e.preventDefault();
if(loop == null){
loop = window.setInterval(function() {
showNextSlide();
},3000);
}
});
но все равно не получается. Может поможете?