$(document).ready(function(){
	content = $("#content").height();
	nav = $("#nav").height();
	if(nav > content) {
		$("#content").height(nav);
	}
});