$(document).ready(function() {
	emulateCssBottom();
});

$(window).bind("resize", function() { emulateCssBottom(); });

function emulateCssBottom(el) {
	if(!($.browser.msie && $.browser.version == 6.0))
		return;

	adjustHeight($("#LeftArea"), 0);	
	adjustHeight($("#BottomNavigation"), 40);	

	adjustHeight($("#MainArea"), 0);	
	adjustHeight($("#Content"), 80);	
}

function adjustHeight(jqElement, marginToWindow) {
	if(!jqElement || jqElement.length == 0)
		return;

	var winHeight = $(window).height();
	var offsetTop = jqElement.offset().top;
	jqElement.css({"height" : winHeight - marginToWindow - offsetTop});
}

