Event.observe(window,'load', function(){
	$$('.logo_hiden').each(function(o){
	    titel1 = o.select('#logo_hiden_image')[0];
	    titel1.setStyle(
            {
            	'visibility'	: 'visible'
            }
        ); 
	})
 }
);

//window.setInterval(function(){
//document.observe("dom:loaded", function(){
Event.observe(window,'load', function(){
	$$('.top_news').each(function(o){
		div1 = o.select('.teaser_top_news')[0];
		 div2 =  o.next().select('.teaser_top_news')[0];
		 try{
			 if( div1.getHeight() > div2.getHeight() ){
				 	div2.setStyle(
			            {'height':(div1.getHeight())+'px'}
			        ); 
			    	div1.setStyle(
			    			{'height':(div1.getHeight())+'px'}
			    	); 
			 }
			 if( div2.getHeight() > div1.getHeight() ){
				 div1.setStyle(
						 {'height':(div2.getHeight())+'px'}
				 ); 
				 div2.setStyle(
						 {'height':(div2.getHeight())+'px'}
				 ); 
			 }
		 }catch(e){
			// console.log(e);
		 }
		
 })
});

Event.observe(window,'load', function(){
	//if (navigator.userAgent.indexOf("MSIE") != -1){
	$$('.hot_news').each(function(o){
		 div_bottom_hot = o.select('.container-workspace-bottom')[0];	
		 div_bottom_hot.setStyle(
		       {'position':'absolute'}
		 );
	})
	
	$$('.top_news').each(function(o){
		div_bottom_top = o.select('.container-workspace-bottom')[0];	
		div_top_top = o.select('.container-workspace-top')[0];	
		div_bottom_top.setStyle(
				{'position':'absolute'}
		);
	})
});
