$(function () { $('#navslide b').click(function () { var sub = $(this).parents('li.nli').children('.sub'); if ($(this).hasclass('hover')) { $(this).removeclass('hover'); sub.slideup(); } else { $(this).addclass('hover'); sub.slidedown(); } }); });