$(document).ready(function () {
	// remueve los enlaces a las categorías NO SALIR EN NOVEDADES Y SALIR EN PORTADA de todas las páginas
	var padre = '';
	jQuery('a[title^="NO SALIR"], [title^="SALIR EN"]').each(
		function(){
			if( jQuery(this).parent().attr('id') != '' )	padre = jQuery(this).parent().attr('id');
			else	jQuery(this).parent().attr('id', 'cat_padre_coma')
			jQuery(this).replaceWith('_');
		}
	);
	
	if( padre != '' ){
		// elimina las comas que quedan sin categoría a la par con el formato ', _'
		jQuery('#'+padre).html( jQuery('#'+padre).html().replace(/, _/g, '') );	
	}

	
});
