function makeLowHeightFriendly()
{
	if ($(window).height() < (630 + $('#footer').height()))	//giving #footer space
	{
		$('#news_container > #news').addClass('absolute');
		$('#navigation_container > #navigation').addClass('absolute');
	}
	else
	{
		$('#news_container > #news').removeClass('absolute');
		$('#navigation_container > #navigation').removeClass('absolute');
	}
}


if (!(navigator.userAgent.match(/Android/i) ||
	navigator.userAgent.match(/webOS/i) ||
	navigator.userAgent.match(/iPhone/i) ||
	navigator.userAgent.match(/iPad/i)
	))
	{
		$(window).load(function () {makeLowHeightFriendly()});
		$(window).resize(function () {makeLowHeightFriendly()});
	}
