window.addEvent('domready', function() { 


// ACCORDION MENUSX

var accordion = new Accordion($$('.toggler'),$$('.element'), {
		opacity: 0,
		onActive: function(toggler) { toggler.setStyle('color', '#CCCCCC'); },
		onBackground: function(toggler) { toggler.setStyle('color', '#FFFFFF'); }
	});
// FINE ACCORDION


// TAB BOC CENTRALE
	/**
	 * Element with id 'demo-block' is the container and all h4-elements
	 * inside are fetched as tab headers. The following elements are their
	 * content.
	 */
	var tabs = new SimpleTabs('demo-block', {
		selector: 'h4'
	});
 
// FINE TAB



});