$(".a-cat").click(function(e){ var u = $(this).next(); if(u.is(':hidden')) { e.preventDefault(); $(".sub-nav").slideUp("fast"); u.slideDown(); } });