window.addEvent('domready', function(){

	var accordion = new Accordion('h3.atStart', 'div.atStart', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('background-image', 'url(http://rutec.interwall-hosting.net/typo3conf/ext/clnews/images/down.gif)');
			toggler.setStyle('border-bottom', '1px solid #444444');
		},
	 
		onBackground: function(toggler, element){
			toggler.setStyle('background-image', 'url(http://rutec.interwall-hosting.net/typo3conf/ext/clnews/images/up.gif)');
			toggler.setStyle('border-bottom', 'none');
		}
	}, $('accordion'));
	 
	
});
