// JavaScript Document
function mainheight()
{
	//var rheight = document.getElementById('content').offsetHeight;
	var lheight = document.getElementById('sidebar').offsetHeight;
	var flash = document.getElementById('flash').offsetHeight;
	var iabout = document.getElementById('iabout').offsetHeight;
	var blogs = document.getElementById('blogs').offsetHeight;
	var rheight = flash + iabout + blogs ;
	//alert(lheight);
	if(lheight>rheight)
	{
		boxheight=lheight;
		conbomheight=lheight-150;
		i=rheight-431;
	}else
	{
		boxheight=rheight;
		i=rheight-431-10-10-10;
	}
	document.getElementById('sidebar').style.height=boxheight+'px';
	document.getElementById('main').style.height=boxheight+'px';
	document.getElementById('iabout').style.height=iabout+'px';
	document.getElementById('content').style.height=boxheight+'px';
	//document.getElementById('iabout').style.border='1px solid #096';
}
window.onload=function()
{
	mainheight();
}
