(function($) {
    $.fn.hideshow = function() {
        this.each(function() {
            $("h3", this).next().hide();
            $("h3 a", this).addClass("showitem");
        });

        $("h3 a", this).click(function(event){
            $(this).parent().next().slideToggle("fast");
            $(this).toggleClass("showitem").toggleClass("hideitem");
            return false;
        });
        
        return this;
    }
})(jQuery);
