window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), '.toggler', 'div.element', {
		opacity: true,
		height : false,
 		width : true,
		fixedHeight: 200,
		fixedWidth: 756,
		duration:1500,
		

		onActive: function(toggler, element){
			toggler.setStyle('color', '#41464D');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#528CE0');
		},
		
		onComplete: function(){
        this.display.delay(15000, this, (this.previous + 1) % this.togglers.length);
    	},
		direction : 'horizontal'

		
		
	});


});
