window.addEvent('domready', function(){
	var accordion = new Accordion('h3.atStart', 'div.atStart', {
			alwaysHide: true,
			show: 100000, // set this number higher than the total number of togglers; this will allow them all to be closed on start
		onActive: function(toggler, element){
			toggler.setStyle('background-image','url(http://www.sudburyhydro.com/images/accordion_minus.jpg)');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('background-image','url(http://www.sudburyhydro.com/images/accordion_plus.jpg)');
		}
	}, $('accordion'));
}); 