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



});