window.addEvent('domready', function() {
	//create our Accordion instance
        if($$('h3.toggler').length>0){
            i=0;
        $$('h3.toggler').each(function(el){
            el.id='bord'+i
            i++
            if($$('#'+el.id+' .cb').length==0){
              el.innerHTML = '<img alt="" class="cb" src="fileadmin/img/cursaccordeon_n.jpg">'+ el.innerHTML
            }

        })
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.overview-rows', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#2c97ff');
                      $$('#'+toggler.id+' .cb')[0].src='fileadmin/img/cursaccordeon_a.jpg'
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#93a5af');
                       $$('#'+toggler.id+' .cb')[0].src='fileadmin/img/cursaccordeon_n.jpg'
		}
	});
        }
        if(lang==1){
            if($$('.teaser-content.fragen img').length>0)
            $$('.teaser-content.fragen img')[0].src = 'fileadmin/img/teaser_header/en/fragen_en.png'
            if($$('.teaser-content.empfhehlung img').length>0)
            $$('.teaser-content.empfhehlung img')[0].src = 'fileadmin/img/teaser_header/en/empfehlung_en.png'
            if($$('.teaser-content.aktuell img').length>0)
            $$('.teaser-content.aktuell img')[0].src = 'fileadmin/img/teaser_header/en/aktuell_en.png'
        }
});




