jQuery.noConflict();
  jQuery(document).ready(function($){

    $("input[name=venovani]").click(function(){
        
        if ($(this).is(':checked'))
            {
            $("textarea[name=zprava]").attr('disabled', false).css('color', '#fff');;                
            }
        else
            {
            $("textarea[name=zprava]").attr('disabled', true).css('color', '#bbb'); 
            }
    });


});




