
var brc_boites_accordion;

window.addEvent('load', function() {

	var hs = $$('.brc_boite_hideshow');
	var c = $$('.brc_boite_content');

	if(hs && hs.length>0 && c && c.length>0) {
		brc_boites_accordion = new Fx.Accordion(hs, c, { display: false, alwaysHide: true, opacity: false
			, onBackground: function(tog, i) {
				tog.className = 'brc_boite_hideshow';
				brc_boites_onClose(tog, i)
			}
			, onActive: function(tog, i) {
				tog.className = 'brc_boite_hideshow active';
				this.completed = i;
				this.currentTog = tog;
				this.currentI = i;
			}
			, onComplete: function() {
				if(this.completed != null) {
					brc_boites_onOpen(this.currentTog, this.currentI)
					this.completed = null;
				}
			}
		});
	}

});


function brc_boites_onOpen(tog, i) {
}
function brc_boites_onClose(tog, i) {
}

