jquery: fake a select box / or, a better toggle
jQuery( document ).ready(function( $ ) {
$( '.js-catList-trigger' ).click(function() {
$('.js-catList').slideUp();
$(this).parent().removeClass('catList-is-open');
if($(this).next().is(':hidden')){
$(this).next().slideDown('fast');
$(this).parent().addClass('catList-is-open');
}
});
});