var accordion = new Accordion('h3.atStart', 'div.atStart', {
	opacity: true,
	alwaysHide: true,
	onActive: function(toggler, element){
		toggler.setStyle('color', '#72896C');
		toggler.setStyle('background','#fff url(img/h3_bg2.gif) no-repeat 8px 12px');
	},
 
	onBackground: function(toggler, element){
		toggler.setStyle('color', '#717B84');
		toggler.setStyle('background','#fff url(img/h3_bg.gif) no-repeat 8px 12px');
	}
}, $('accordion'));

var accordion2 = new Accordion('h3.atStart2', 'div.atStart2', {
	opacity: true,
	alwaysHide: true,
	onActive: function(toggler, element){
		toggler.setStyle('color', '#72896C');
		toggler.setStyle('background','#fff url(img/h3_bg2.gif) no-repeat 8px 12px');
	},
 
	onBackground: function(toggler, element){
		toggler.setStyle('color', '#717B84');
		toggler.setStyle('background','#fff url(img/h3_bg.gif) no-repeat 8px 12px');
	}
}, $('accordion2'));
 


