window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#41464D');
			toggler.setStyle('background-repeat', 'no-repeat');
			toggler.setStyle('background-position', '565px -40px');
			toggler.setStyle('background-color', '#fafafa');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#528CE0');
			toggler.setStyle('background-repeat', 'no-repeat');
			toggler.setStyle('background-position', '565px 10px');
			toggler.setStyle('background-color', '#eaeaea');
		}
	});
});
