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('backgroundImage', 'url("images/background/bottom_arrow.png")');
			toggler.setStyle('fontWeight', 'bold');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('backgroundImage', 'url("images/background/right_arrow.png")');
			toggler.setStyle('fontWeight', 'normal');
		}
	});
});
