window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'div.toggler', 'div.element', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('background', 'url(ressources/accordion/images/bg_over.gif)');
			toggler.set('onmouseover','');
			toggler.set('onmouseout','');			
		},
		onBackground: function(toggler, element){
			toggler.setStyle('background', 'url(ressources/accordion/images/bg_out.gif)');
			toggler.set('onmouseout','this.style.background="url(ressources/accordion/images/bg_out.gif)"; this.style.color="#e12d26"');
			toggler.set('onmouseover','this.style.background="url(ressources/accordion/images/bg_over.gif)"; this.style.color="white"');
		}
	});

	});