window.onload = function ()
{
	if (getHeight('menu') > getHeight('content'))
	{
		document.getElementById('content').style.height = getHeight('menu') + "px";
	}
	else
	{
		document.getElementById('menu').style.height = getHeight('content') + "px";
	}
	
	slideshow();
}

