window.onresize = resizeMainDiv;

function resizeMainDiv() {
	$('#footer').show();
	var tgtHeight = $(window).height() - $('#footer').height();
	if ($.browser.msie) {
		$('#wrapper').height(tgtHeight);
	}
	else {
		$('#wrapper').animate({height:tgtHeight});
	}
}

