// JavaScript Document
	window.addEvent('domready', function(){
			$$('h3.atStart').setStyle('cursor', 'pointer');
			$$('h3.atStart').setStyle('background', '#f9f9f9 url(images/i_zwei_down.png) no-repeat 98.7% 12px');
			$$('small.openClose').setText('display');
			var accordion = new Accordion('h3.atStart', 'div.atStart', {
				opacity: false,
				show: 30,
				alwaysHide: true,
				onActive: function(toggler, element){
					toggler.setStyle('color', '#444444');
					toggler.setStyle('background', '#f9f9f9 url(images/i_zwei_up.png) no-repeat 98.7% 11px');
					toggler.getLast().setText('hide');
				},
				
				onBackground: function(toggler, element){
					toggler.setStyle('color', '#444');
					toggler.setStyle('background', '#f9f9f9 url(images/i_zwei_down.png) no-repeat 98.7% 12px');
					toggler.getLast().setText('display');					
				}
			}, $('accordion'));
		}); 