onload=function() 
{
		var subContentHeight = document.getElementById('sub-content').offsetHeight; 
		var rightContentHeight = document.getElementById('right-content').offsetHeight;
		//alert("content height is: " + subContentHeight);
		if (subContentHeight > rightContentHeight)
		{
			subContentHeight = subContentHeight  + 10;
			//alert("content height is: " + subContentHeight);
			document.getElementById('right-content').style.height = subContentHeight + "px";
		}
		else
		{
			rightContentHeight = rightContentHeight - 15;
			document.getElementById('sub-content').style.height = rightContentHeight + "px";
			}
			
}		
//]]>
