window.addEvent('domready', function() {
	if($$('div.toggler') !== false ){
	$$('div.toggler').each(function(item) { // array all toggler
		item.addEvents({ 'mouseenter': function() { this.setStyle('color','#CD0000'); this.setStyle('cursor','pointer');this.setStyle('text-decoration','underline'); } });
		item.addEvents({ 'mouseleave': function() { this.setStyle('color','#46565e');this.setStyle('text-decoration','none'); } });
		item.addEvents({ 'click': function() { $$('div.offen').setStyle('background-image','url("tl_files/dynamic_dropdown/arrow.gif")'); } });
		item.addEvents({ 'click': function() { 
		if(this.hasClass('offen') == false ){ $$('div.offen').removeClass('offen'); this.setStyle('background-image','url("tl_files/dynamic_dropdown/arrow-open.gif")'); this.addClass('offen');}
		else{ this.setStyle('background-image','url("tl_files/dynamic_dropdown/arrow.gif")'); this.removeClass('offen'); }
			} });
 	});
	};
});



