
function trace( msg ){
  if( typeof( jsTrace ) != 'undefined' ){
    jsTrace.send( msg );
  }
}


window.addEvent('domready', function() {
	trace("run");	
	
		//-----------------------------------------------
	
	// CSS Manipulationen
	/*
	var target = $$('#hauptueberschrift');
	if (target == null) {
		$('#main .mod_article').setStyles({ 
			'margin' : '0 0 0 20px'
		
		
		});
	}
	*/
	//-----------------------------------------------
	// News Reader Accordion
	
	// schlie§en button im accordeon
	$$('#logo').addEvents({
		'click' : function() {
			//accordion.display(-1);
			//alert("click");
			new Accordion($$('div.toggler'), $$('div.accordion'),
			{
				display: -1
			});							
		}
	});
	
	
	
	
		
	
	//-----------------------------------------------
	
});

