$(document).ready(function () {
    $('#header-tags').hide();
    $('#topics').click(function () {
        $('#header-tags').toggle("slow");
        return false;
    });
});
