function deplie(dom){
	var element = dom.nextSibling;
	if (element != null) {
		if (element.tagName != undefined){
			while(element.tagName!="UL"){
				element = element.nextSibling;
			}
			jQuery(element).slideToggle("slow");
			return false;
		} 
	}
}

/*
	Afficher une popin
*/
function loadPopup(elt, idContent){	
	hs.width = 520; 
	hs.allowHeightReduction = true;
	hs.htmlExpand(elt, { contentId: idContent} );
	return false;
}

