window.onbeforeunload = function()
{
	var oHeight = document.getElementById('page').offsetHeight;
		
	document.getElementById('testBar').style.height = oHeight + 'px';
			
	$("#page").fadeOut(300, function(){});
	$("#footer").fadeOut(300, function(){});
	$("#menuFeeds").fadeOut(300, function(){});
}