
$(document).ready(function() {

    $('.debug').click(function(event) {
        event.preventDefault();
        if(parseInt($(this).css('height'), 10) > 100) {
            $(this).css('height', '0');
        } else {
            $(this).css('height', '200px');
        }
    });
    
});

