window.addEvent('domready', function() {
			var accordion = new Accordion('h3.toggler', 'div.element', {
				display: 0,
				opacity: true, 
				duration: 700,
				transition: Fx.Transitions.linear,
 				wait:false,
				onActive: function(toggler, element){
					toggler.setStyle('cursor', 'default');
				},
				onBackground: function(toggler, element){
					toggler.setStyle('cursor', 'pointer');
				}
			}, $('acc-menu'));
});