$(document).ready(function() {
	// Set the sidebar height the same as the content height.
	// This will break if #content is actually shorter than #sidebar
	// I wish I could do this with css; but I really don't know how.
	$("#sidebar").height($("#content").height());
});

