
function document_ready() {

	// Cacher les projets vide
	$("#publications .bloc_deroulant div.deroulant").each(function() {
		if ($(this).children('div.publication').length < 1) {
			$(this).parent().hide();
		}
	});
}
