Если честно не совсем понимаю чего вы пытаетесь сделать но ...
jQuery(function ( $ ) {
var direct = $('.direct_container_afisha'),
bottom = $('#bottom_afisha');
$('#event_tabs a').on('click', function ( e ) {
if ( window.innerWidth > 720 || !$( this.parentNode ).hasClass('active') ) {
return false;
}
switch( $(this).data('id').toLowerCase() ) {
case 'kino':
direct.detach();
bottom.click();
break;
case 'clubs':
case 'theater':
case 'others':
bottom.detach();
direct.click();
break;
}
return false;
});
});