// JQuery stuff goes here
$(document).ready(function() {

    // Hide helper box, if it exists
    $("#comments-container").hide();

    // Toggle helper box when clicked
    $("#comments-toggler").click(function () {
        $("#comments-container").slideToggle("normal");
    });
});