$(function() {
    $("div.sbcontent a.expander")
        .mouseover(function() {$(this).addClass("hover"); })
        .mouseout(function() {$(this).removeClass("hover"); })
        .click(function() {
            $(this).siblings(".expanding").toggleClass("hidden");
            return false;
        });
});
