jQuery(function ($) { $(".itembox>h2").click(function () { var _this = $(this).next(".inner"); if (_this.css("display") == "none") { _this.not(":animated").slideDown("fast"); $(this).addClass("open"); } else { _this.not(":animated").slideUp("fast"); $(this).removeClass(); } return false; }); });