$(document).ready(function () {

    $("#tophiddenpanel").hide();

    $("#topbutton").click(function () {
        $("#tophiddenpanel").slideToggle("slow");
        if ($("#topbutton").text == "+") {
            $("#topbutton").text("-");
        }
        else {
            $("#topbutton").text("+");
        }
    });

});
