

function resizeScreen()
{
	var height = $(".foottable").height();
	var top = $(".foottable").offset().top;
	var screenheight = $(document).height();
	if(top + height < screenheight)
	{
		$(".foottablewrapper").css("top",(screenheight - top - height));
	}
	
}

