var gi_containerHeight	= 0;
var gb_isIE				= false;

function onLoad()
{
	if ( gb_isIE ) ieFixes();
	onResize();
}

function onResize()
{
	var li_currentContainerHeight	= document.getElementById( 'contentContainer' ).offsetHeight;
	
	if ( gi_containerHeight != li_currentContainerHeight )
		{
		gi_containerHeight	= li_currentContainerHeight;
		document.getElementById( 'footer' ).style.paddingTop	= ( gi_containerHeight + 85 )  + 'px';
		}
}

window.onload = onLoad;
