var accordion = new Accordion('h3.atStart', 'div.atStart', {
	opacity: true,
	alwaysHide: true,
	onActive: function(toggler, element){
		toggler.setStyle('color', '#3A4656');
		toggler.setStyle('background','url(img/h3_bg2.gif) no-repeat 2px 10px');
	},
 
	onBackground: function(toggler, element){
		toggler.setStyle('color', '#3A4656');
		toggler.setStyle('background','url(img/h3_bg.gif) no-repeat 2px 10px');
	}
}, $('accordion'));
 

