jQuery(document).ready(function() {

	jQuery("#content").find("h3.resources-section-title").each(function(i) {
		var title_id = jQuery(this).attr('id');
		var list = jQuery('#' + title_id + '-list');
		var items = list.children();
		if (!items.length) {
			list.hide();
			jQuery(this).hide();
		}
	});

	jQuery("#content").find("h3.news-section-title").each(function(i) {
		var title_id = jQuery(this).attr('id');
		var child_entries = jQuery("#content").find('.relevant-' + title_id + '-child');
		if (!child_entries.length) {
			jQuery(this).hide();
		}
	});

});
