Я переделал вот так:
jQuery("#sidebar .bold.show-hide").click(function() {
if(jQuery(this).hasClass('show-hide-on')){
jQuery(this).removeClass("show-hide-on");
jQuery(this).next().css("display", "block");
} else {
jQuery(this).addClass("show-hide-on");
jQuery(this).next().css("display", "none");
}
});
Но может есть более продвинутые варианты?