function initEvaluationSlide() {


	$('#evaluation .evaluation_category_text').hide();
	

	
	$("#evaluation input[type='checkbox']").click(
		function() {
			
			var checkElement = $(this);
			var CategoryId = checkElement.val();
			
			var CategoryChecked = 0;

			
			if(checkElement.is(':checked') == 1)
			CategoryChecked = 1;
			
			if(CategoryChecked == 1 && CategoryId > 0)
			$("#evaluation #evaluation_category_text_"+CategoryId).show();
			else
			$("#evaluation #evaluation_category_text_"+CategoryId).hide();

		}
	);
	  
}
$(document).ready(function() {initEvaluationSlide();});
