$(function() {
	adjustHeights();
 $(window).resize(adjustHeights);
});

function adjustHeights() {
	hw = $(window).height()-$("#header").outerHeight()-100;
	
	$("#container0").css("min-height",hw);
	
	hsb = $("#container0").outerHeight()-21;
	$("#sidebar").height(hsb);
}

