(function($) {
    ListingToggle = function(titleSelector, body, c) {
        $(titleSelector).click(function(e) {
            if(e.target.className==c)return;
            $(e.target).closest('li').toggleClass('open').find(body).toggle('fast');
        });
    }
})(jQuery);
