// JavaScript Document
window.addEvent('domready', function(){
var teamaccordion = new Accordion('h3.atStart', 'div.atStart', {
	opacity: false,
	onActive: function(teamtoggler, teamelement)
	{
		 teamtoggler.setStyle('color', '#bc1220');
		 teamtoggler.setStyle('background','transparent url(fileadmin/template_v3/images/featuredown.gif) 2px 9px no-repeat');
	},
	onBackground: function(togglerklein, teamelement)
	{
		teamtoggler.setStyle('color', '#000000');
		teamtoggler.setStyle('background','transparent url(fileadmin/template_v3/images/featureup.gif) 2px 9px no-repeat');
	}
}, 
$('teamaccordion'));
});