window.addEvent('domready', function() {
	//create our Accordion instance
	var myAccordion = new Accordion($('contenu'), 'h2.toggler', 'div.element', {
		opacity: false,
		alwaysHide: true,
		display: -1,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#fff');
			//toggler.setStyle('color', '#41464D');
			//toggler.getElement('img').setProperty('src', '/images/fleche_bas.gif');
			toggler.setStyle('background-color', '#d30921');
			toggler.estActif = true;
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#fff');
			//toggler.setStyle('color', '#660E0E');
			//toggler.getElement('img').setProperty('src', '/images/fleche_droite.gif');
			toggler.setStyle('background-color', '#d30921');
			toggler.estActif = false;
		}
	});
	


	$$('#contenu h2.toggler').addEvent('mouseover', function() { if(!this.estActif) this.setStyle('background-color','#d30921'); });
	$$('#contenu h2.toggler').addEvent('mouseout', function() { if(!this.estActif) this.setStyle('background-color', '#d30921'); });
});