$(function() {
	// give the left nav the same height as the content.
	var contentHeight = $("#content").height();
	var navHeight = $("#nav").height();
	var lowerNavHeight = $("#lowerNav").height();
	if (contentHeight > (navHeight+lowerNavHeight) ) {
		$("#nav").height(contentHeight-(lowerNavHeight+75));
	} 
});