window.onload = function()
{
	var topContaner = document.getElementById('topContaner');
	var cLeftColl = document.getElementById('cLeftColl');
	if(cLeftColl.offsetHeight < topContaner.offsetHeight)
	{
		cLeftColl.style.height = topContaner.offsetHeight+"px";
	}
}
