function YLCResize() {
var maxheight = 0;
var elemheight =0 ;
var maxnewsheight = 0;
var maindivheight = 0;
var elemnewsheight =0 ;
var count = 0;
var alldivs = document.getElementsByTagName("div");
var num = alldivs.length;
	for (var i = 0; i < num; i++)
		{
			var thisDiv = document.getElementsByTagName("div")[i];
			if (thisDiv.className == 'council_content')
				{
					elemheight=thisDiv.offsetHeight;
					if (elemheight > maxheight)
						{
						maxheight=elemheight;
						}
						count=count+1;
				}
		}
	for (var j = 0; j < num; j++)
		{
		var thisDiv1 = document.getElementsByTagName("div")[j];

			if (thisDiv1.className == 'council_content')
				{
				thisDiv1.style.height=maxheight-10+"px";
				}
		}
		
Resize();
}

   
