	$(document).ready (
        function () {
            $('div.Topic').prepend('<div class="expander" >+</div>');
            $('div.List').hide();
            $('div.Topic').toggle(
                function () {
                    $(this).next().show();
                    $(this).children('div.expander').replaceWith('<div class="expander" >-</div>');
                },
                function () {
                    $(this).next().hide();
                    $(this).children('div.expander').replaceWith('<div class="expander" >+</div>');
                }
            );
        }
    );

