// JavaScript Document



function adjustLayout()
{
	//alert('entered');
	//adjust the height of the center content/footer
	var contentDocObj = document.getElementById('content');
	var mainRightDocObj = document.getElementById('main-right');
	var footerDocObj = document.getElementById('footer');
	var textDocObj = document.getElementById('text');
	
	if(textDocObj!=null)
	{
		footer(contentDocObj,footerDocObj);
	}
	else
	{
		contentDocObj.style.backgroundImage="url(../graphics/main-bg.jpg)";
		footer(mainRightDocObj,footerDocObj);
	}
}


function footer(contentDocObj,footerDocObj)
{
	//alert('content height ' + contentDocObj.offsetHeight);
	if(contentDocObj.offsetHeight>850)
	{
		contentDocObj.style.height = contentDocObj.offsetHeight + 170 + 'px';
		footerDocObj.style.top = contentDocObj.offsetHeight - 85 + 'px';
	}
}