jQuery(function($){
    $(document).ready(function(){
        
    });
    
    $('textarea.auxiliaryBlock').keypress(function () {
        $(this).next("div").text(($(this).val()).length);
    });
    
    $('.showKeywordsPanel').click(function () {
        $(".keywords").toggle();
    });
});
