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', '#006cb7');
			toggler.setStyle('font-size', '18px');
			toggler.setStyle('background-image', 'url(images/clear1x1.gif)');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#383838');
			toggler.setStyle('font-size', '12px');
			toggler.setStyle('background-image', 'url(images/plus.gif)');
		}
	});
});
