$(document).ready(function() {
    $('#debug-box').hide();
    $('a#debug-box-toggle').click(function() {
        $('#debug-box').toggle("fast");
        return false;
    });
});
