// JavaScript Document

window.addEvent('domready', function(){

var scrollcon=$('maincontentnews');
//var ht=parseInt($('scrollcontent').getStyle('height',scrollcon.offsetHeight));
ht=scrollcon.offsetHeight;
ht=ht+25;

var step;
if (ht>354) {
	$('maincontentnews').setStyle('height',ht);
	
} else {
	$('maincontentnews').setStyle('height',354);
}


	
 
});

								
