function checkFooterPosition()
{
	
	$('#footer-ext').css('margin-top','0');
	var footerBottom = $('#footer-ext').offset().top + $('#footer-ext').height();
	var footerOffset = $(window).height()-footerBottom;
	if(footerOffset>0)
	{
		$('#footer-ext').css('margin-top',footerOffset);
		//$('#footer').prepend('mt='+footerOffset);
	}			
}	
