
$(document).ready(function() {
	
	if ($("#CFusernick").val() != 'anonim' && $("#CFusernick").val() != '') { 
		$("#CommentForm").show();
		$("#CFinfo").hide();		
		$("#CFsubmit").removeAttr("disabled");
	}	
	else {
		$("#CommentForm").hide();
		$("#CFinfo").show();	
		$("#CFsubmit").attr("disabled","disabled");	
	}


	
		
});
	

	

