// Testing 123
// Testing2 345

function initFooter ( )
{
	if ( document.getElementById ( 'FooterText' ) )
	{
		var f = document.getElementById ( 'FooterText' );
		var n = document.createElement ( 'div' );
		n.innerHTML = f.innerHTML;
		n.className = 'FooterText FooterText2';
		f.parentNode.removeChild ( f );
		document.getElementById ( 'Footer__' ).appendChild ( n );
		document.getElementById ( 'Footer__' ).appendChild ( f );
		//document.getElementById ( 'Bunndings' ).style.top = getElementHeight ( "Col2" );
	}
	else
	{
		setTimeout ( 'initFooter()', 50 );
	}
}

initFooter ();

