function SetHeight()
{
	s = document.getElementById('sidebar');
	c = document.getElementById('content');

	if(s.offsetHeight < c.offsetHeight)
	{
		s.style.height = c.offsetHeight+"px";
	}
	else
	{
		c.style.height = s.offsetHeight+"px";
	} 
}

window.onload = function() {SetHeight();} 
