jQuery(function() {
	if (jQuery('#reabrir:checked').length > 0) {
		jQuery('label[for="identificador"]').show();
		
		jQuery('label[for="coment"]').hide();
		jQuery('#categoria').parent().hide();
	}
	else {
		jQuery('label[for="identificador"]').hide();
		
		jQuery('label[for="coment"]').show();
		jQuery('#categoria').parent().show();
	}
	
	jQuery('#reabrir').bind('click', function() {
		if (jQuery('#reabrir:checked').length > 0) {
			jQuery('label[for="identificador"]').show('slow');
                        jQuery('label[for="nombre"]').hide('slow');
                        jQuery('label[for="apellidos"]').hide('slow');
			
			jQuery('label[for="coment"]').hide('slow');
			jQuery('#categoria').parent().hide('slow');
		}
		else {
			jQuery('label[for="identificador"]').hide('slow');
                        jQuery('label[for="nombre"]').show('slow');
                        jQuery('label[for="apellidos"]').show('slow');
			
			jQuery('label[for="coment"]').show('slow');
			jQuery('#categoria').parent().show('slow');
		}
	});
});