toutou.require('toutou.html.dom');

forum = new function() {
	;
}

forum.toggleAffichageAjoutRecette = function(id) {
		var div = tt$("divAjoutRecette"+id);
		var ttl = tt$("titreBlocDepotRecette"+id);
		
		div.style.display = (div.style.display == "none")?"block":"none";
		ttl.className = (ttl.className == "MarronPlus1")?"OrangePlus1":"MarronPlus1";
}
