window.addEvent("load",function(){
	var efekt = new Accordion('h3.toggler', 'div.element', {
		alwaysHide: true,
		//fixedHeight: 150,
		display: false,
		onActive: function(toggler){
			new Fx.Styles(toggler).start({
				"background-color" : "#f9f0da"
			});
		},
		onBackground: function(toggler){
			new Fx.Styles(toggler).start({
				"background-color": "#fef6e4"
			});		
		}
	});
});
