window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'div.toggler', 'div.element',  {
		opacity: true,
//if display:1 -> the second Accordion element will be displayed		
                display: 0,
                height: false, 
                width: true, 
                fixedWidth: 670, 
                duration: 50, 
                transition: Fx.Transitions.Quad.easeInOut,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#41464D');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#528CE0');
		}
	});


});
